Sha256: ea841979eed4b6c84d58a4763b41e5271017c4aa0ce3e567951bac0d9680b11a
Contents?: true
Size: 575 Bytes
Versions: 13
Compression:
Stored size: 575 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 = YES; /* 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