Sha256: e50656b40453f572df6728e7ac4557b02b3757f558879868e1dd557e046b00d2
Contents?: true
Size: 860 Bytes
Versions: 11
Compression:
Stored size: 860 Bytes
Contents
sc_require("views/view"); SC.View.reopen( /** @scope SC.View.prototype */ { /** Set to YES to indicate the view has visibility support added. @deprecated Version 1.10 */ hasVisibility: YES, /** By default we don't disable the context menu. Overriding this property can enable/disable the context menu per view. */ isContextMenuEnabled: function () { return SC.CONTEXT_MENU_ENABLED; }.property(), /** The visibility of the view does not need to be computed any longer as it is maintained by the internal SC.View statechart. @deprecated Version 1.10 @returns {SC.View} receiver */ recomputeIsVisibleInWindow: function () { //@if(debug) SC.warn("Developer Warning: Calling recomputeIsVisibleInWindow() is no longer necessary and has been deprecated."); //@endif return this; } });
Version data entries
11 entries across 11 versions & 1 rubygems