Sha256: f37f07f3ca3467376cec0b79b85b814015a2bcf971b7e2fde83c5bf2ad9aabad

Contents?: true

Size: 1.43 KB

Versions: 7

Compression:

Stored size: 1.43 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 */

sc_require('states/ready');

/**
  State when targets are loaded, but no target is selected.
*/
TestRunner.READY_EMPTY = SC.Responder.create({

  nextResponder: TestRunner.READY,
  
  /**
    Show laoding targets view.
  */
  didBecomeFirstResponder: function() {
    TestRunner.set('currentScene', 'testsNone');

    // if a route is pending, then try to select the target.  If no target
    // could be found, then set the final route to here.
    TestRunner.updateRoute(null, null, NO);
     
    if (TestRunner.get('routePending')) {
      var target = TestRunner.computeRouteTarget();
      if (target) TestRunner.sendAction('selectTarget', this, target);
      else TestRunner.updateRoute(null, null, YES) ;
    } 
    
  },
  
  willLoseFirstResponder: function() {
    TestRunner.set('currentScene', null);
  },
  
  /**
    While in the empty state, save the target/test and then. 
  */
  route: function(sender, params) {
    TestRunner.set('routeTarget', params.target);
    TestRunner.set('routeTest', params.test);
  }
  
});

Version data entries

7 entries across 7 versions & 1 rubygems

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