Sha256: bd40ea2a9b869379825e28a043c45bbb91bb53adf8a05a5c404f443c2575573a
Contents?: true
Size: 1.36 KB
Versions: 11
Compression:
Stored size: 1.36 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2010 Sprout Systems, Inc. and contributors. // Portions ©2008-2010 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /*globals TestRunner */ sc_require('states/ready'); /** Initial state of application before it has loaded targets. */ TestRunner.READY_LIST = SC.Responder.create({ nextResponder: TestRunner.READY, /** Show laoding targets view. */ didBecomeFirstResponder: function() { TestRunner.set('currentScene', 'testsMaster'); TestRunner.testsController.set('selection', null); // always empty sel //TestRunner.testsController.set('isShowingTests', YES); var target = TestRunner.sourceController.get('selection').firstObject(); TestRunner.updateRoute(target, null, NO); if (TestRunner.get('routePending')) { var test = TestRunner.computeRouteTest(); if (test) TestRunner.sendAction('selectTest', this, test); else TestRunner.updateRoute(target, null, YES); } }, willLoseFirstResponder: function() { TestRunner.set('currentScene', null); //TestRunner.testsController.set('isShowingTests', NO); } });
Version data entries
11 entries across 11 versions & 1 rubygems