Sha256: b01bf3c1b8740ec829e756ea84914635202380ff81e29d74435f3574db6bb375

Contents?: true

Size: 574 Bytes

Versions: 13

Compression:

Stored size: 574 Bytes

Contents

/**
  If true, then all SC.Controls can be focused when the
  user presses the tab key. Otherwise, only TextFieldViews
  will be focused.

  @type String
  @constant
*/
SC.FOCUS_ALL_CONTROLS = NO;

/*
  TODO [CC @ 1.5] Remove this deprecation warning eventually
*/
SC.ready(function() {
  var focus = SC.SAFARI_FOCUS_BEHAVIOR;
  if (focus !== null && focus !== undefined) {
    // @if (debug)
    SC.Logger.warn("SC.SAFARI_FOCUS_BEHAVIOR is deprecated. Please use SC.FOCUS_ALL_CONTROLS instead");
    // @endif
    SC.FOCUS_ALL_CONTROLS = SC.SAFARI_FOCUS_BEHAVIOR;
  }
});

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
sproutcore-1.10.3.1 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.10.2 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.10.1 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.10.0 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.10.0.rc.3 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.10.0.rc.2 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.10.0.rc.1 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.9.2 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.9.1 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.9.0 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.8.2.1 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.8.1 lib/frameworks/sproutcore/frameworks/foundation/core.js
sproutcore-1.8.0 lib/frameworks/sproutcore/frameworks/foundation/core.js