Sha256: 3926f781badfbc2eb705cb140f217da8913274d33440460a67e2279128a63a52
Contents?: true
Size: 993 Bytes
Versions: 9
Compression:
Stored size: 993 Bytes
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 */ /** Displayed when the app has no targets. */ TestRunner.READY_NO_TESTS = SC.Responder.create({ nextResponder: TestRunner.READY, /** Show laoding targets view. */ didBecomeFirstResponder: function() { TestRunner.set('currentScene', 'noTests'); // this is always the final route since we can't load any tests var target = TestRunner.sourceController.get('selection').firstObject(); TestRunner.updateRoute(target, null, YES); }, willLoseFirstResponder: function() { TestRunner.set('currentScene', null); } });
Version data entries
9 entries across 9 versions & 1 rubygems