jquery Programming Glossary: this._super
Ember.js draggable and droppable jqueryUI / native Drag and drop mixin http://stackoverflow.com/questions/11146470/ember-js-draggable-and-droppable-jqueryui-native-drag-and-drop-mixin it will call this method. didInsertElement function this._super Make jQuery UI options available as SproutCore properties var..
Ember.js and jQuery Sortable. How to work around the metamorph scripts http://stackoverflow.com/questions/11748164/ember-js-and-jquery-sortable-how-to-work-around-the-metamorph-scripts App.JQuerySortableItemView didInsertElement function this._super this. .sortable .disableSelection App.Router Ember.Router.extend..
Twitter Bootstrap / jQuery - How to temporarily prevent the modal from being closed? http://stackoverflow.com/questions/13421750/twitter-bootstrap-jquery-how-to-temporarily-prevent-the-modal-from-being-clo false hide function if this.options.locked return this._super 'hide' override the old initialization with the new constructor..
attaching a class to a jQuery object http://stackoverflow.com/questions/6307918/attaching-a-class-to-a-jquery-object .extend name pluginName meta Call the base constructor this._super element meta TODO Add custom initialization code like the following.. DEMO Overriding the base _paint method _paint function this._super is available in all overridden methods and refers to the base.. in all overridden methods and refers to the base method. this._super alert 'TODO implement myPlugin._paint ' Declare this class..
How to Extend Twitter Bootstrap Plugin http://stackoverflow.com/questions/9137311/how-to-extend-twitter-bootstrap-plugin function do custom method stuff call the original method this._super 'show' override the old initialization with the new constructor..
Ember.js draggable and droppable jqueryUI / native Drag and drop mixin http://stackoverflow.com/questions/11146470/ember-js-draggable-and-droppable-jqueryui-native-drag-and-drop-mixin Ember.Mixin.create When SproutCore creates the view's DOM element it will call this method. didInsertElement function this._super Make jQuery UI options available as SproutCore properties var options this._gatherOptions Make sure that jQuery UI events..
Ember.js and jQuery Sortable. How to work around the metamorph scripts http://stackoverflow.com/questions/11748164/ember-js-and-jquery-sortable-how-to-work-around-the-metamorph-scripts contentBinding 'App.router.applicationController' itemViewClass App.JQuerySortableItemView didInsertElement function this._super this. .sortable .disableSelection App.Router Ember.Router.extend location Ember.Location.create implementation 'hash' root..
Twitter Bootstrap / jQuery - How to temporarily prevent the modal from being closed? http://stackoverflow.com/questions/13421750/twitter-bootstrap-jquery-how-to-temporarily-prevent-the-modal-from-being-clo this.options.locked true unlock function this.options.locked false hide function if this.options.locked return this._super 'hide' override the old initialization with the new constructor .fn.modal .extend function option var args .makeArray arguments..
attaching a class to a jQuery object http://stackoverflow.com/questions/6307918/attaching-a-class-to-a-jquery-object constructor init function element meta var meta .extend name pluginName meta Call the base constructor this._super element meta TODO Add custom initialization code like the following this._testButton '.testButton' element .get 0 Public.. function alert 'This is a public method' Private methods DEMO Overriding the base _paint method _paint function this._super is available in all overridden methods and refers to the base method. this._super alert 'TODO implement myPlugin._paint.. base _paint method _paint function this._super is available in all overridden methods and refers to the base method. this._super alert 'TODO implement myPlugin._paint ' Declare this class as a jQuery plugin .plugin 'my_plugin' My.Plugin jQuery Define..
How to Extend Twitter Bootstrap Plugin http://stackoverflow.com/questions/9137311/how-to-extend-twitter-bootstrap-plugin args.shift .apply this args show function do custom method stuff call the original method this._super 'show' override the old initialization with the new constructor .fn.modal .extend function option var args .makeArray arguments..
|