Sha256: 9211d0aa644ce29b5a59f9a9b02c77a158227d499ef3776754a70d1a0ce5a16b
Contents?: true
Size: 1.26 KB
Versions: 16
Compression:
Stored size: 1.26 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2009 Sprout Systems, Inc. and contributors. // Portions ©2008-2009 Apple Inc. All rights reserved. // License: Licened under MIT license (see license.js) // ========================================================================== /*globals TestRunner */ /** Initial state of application before it has loaded targets. */ TestRunner.START = SC.Responder.create({ /** Show loading targets view. */ didBecomeFirstResponder: function() { TestRunner.set('currentScene', 'targetsLoading'); TestRunner.targetsController.reload(); // load the targets. }, willLoseFirstResponder: function() { TestRunner.set('currentScene', null); }, /** Called when the targets have loaded. Pass param whether we have targets or not. */ targetsDidChange: function() { if (TestRunner.getPath('targets.status') !== SC.Record.READY_CLEAN) return NO; var hasTargets = TestRunner.getPath('targets.length') >0; if (hasTargets) TestRunner.makeFirstResponder(TestRunner.READY_EMPTY); else TestRunner.makeFirstResponder(TestRunner.NO_TARGETS); return YES; } });
Version data entries
16 entries across 16 versions & 1 rubygems