fly
fly copied to clipboard
Add examples directly to JSDoc
// @example
/*
$.fly.dropdown.extend({
defaults: {
position: 'bottom center',
content: function () {
return Template('dropdown').render({});
}
},
init: function() {
var dropdown = this;
// use .root() to access DOM node
dropdown.root().css('z-index', 9999);
}
}).create('.js-dropdown');
*/