Sha256: 27e78d7f2c441804916d7c62dfed9b26e2d43783b52da88c6099dffa3e3c6ee6
Contents?: true
Size: 805 Bytes
Versions: 7
Compression:
Stored size: 805 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2009 Sprout Systems, Inc. and contributors. // Portions ©2008-2009 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /*globals TestRunner */ /** Displayed when the app has no targets. */ TestRunner.NO_TARGETS = SC.Responder.create({ /** Show laoding targets view. */ didBecomeFirstResponder: function() { TestRunner.set('currentScene', 'noTargets'); TestRunner.updateRoute(null, null, YES); }, willLoseFirstResponder: function() { TestRunner.set('currentScene', null); } });
Version data entries
7 entries across 7 versions & 1 rubygems