Sha256: 3e8e75774cafb69c3fd993539b6245c7a3434475a42f4f546848bab5bf27fd88

Contents?: true

Size: 1.35 KB

Versions: 17

Compression:

Stored size: 1.35 KB

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 */

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

17 entries across 17 versions & 2 rubygems

Version Path
sproutit-sproutcore-1.0.20090721145285 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1046 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1043 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1042 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1037 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1035 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1031 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1030 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1029 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1027 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1028 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1026 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1025 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1024 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1009 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1008 frameworks/sproutcore/apps/tests/states/ready_list.js
sproutcore-1.0.1003 frameworks/sproutcore/apps/tests/states/ready_list.js