Sha256: 44fa3324d09648b2cfe9ced7d9a6ceb0f1cfe4d80268c483efb963ccb16246e6

Contents?: true

Size: 1.26 KB

Versions: 7

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:   Licensed 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

7 entries across 7 versions & 1 rubygems

Version Path
sproutcore-1.4.0.rc.5 lib/frameworks/sproutcore/apps/tests/states/start.js
sproutcore-1.4.0.rc.4 lib/frameworks/sproutcore/apps/tests/states/start.js
sproutcore-1.4.0.rc.3 lib/frameworks/sproutcore/apps/tests/states/start.js
sproutcore-1.4.0.rc.2 lib/frameworks/sproutcore/apps/tests/states/start.js
sproutcore-1.4.0.rc lib/frameworks/sproutcore/apps/tests/states/start.js
sproutcore-1.0.1049.pre.2 lib/frameworks/sproutcore/apps/tests/states/start.js
sproutcore-1.0.1049.pre.1 frameworks/sproutcore/apps/tests/states/start.js