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