Sha256: f0136a31ce59bcef3b2160622b56d2e5276db2e7580af263f86f29ba981ac1a2
Contents?: true
Size: 1.33 KB
Versions: 3
Compression:
Stored size: 1.33 KB
Contents
(function($) { var creatingMethods = ['reinit', 'reactivate', 'activate', 'activateAsLandingPage', 'prepare', 'linkedPages']; var ignoredMethods = ['cleanup', 'refreshScroller', 'resize', 'preload', 'deactivate', 'unprepare']; var prototype = { _create: function() { this.configuration = this.element.data('configuration') || this.options.configuration; }, _ensureCreated: function() { this.created = true; this.element.nonLazyPage(this.options); }, _delegateToInner: function(method, args) { return this.element.nonLazyPage.apply(this.element, [method].concat([].slice.call(args))); }, getConfiguration: function() { return this.configuration; }, update: function(configuration) { if (this.created) { this._delegateToInner('update', arguments); } else { _.extend(this.configuration, configuration.attributes); } } }; _(creatingMethods).each(function(method) { prototype[method] = function() { this._ensureCreated(); return this._delegateToInner(method, arguments); }; }); _(ignoredMethods).each(function(method) { prototype[method] = function() { if (this.created) { return this._delegateToInner(method, arguments); } }; }); $.widget('pageflow.page', prototype); }(jQuery));
Version data entries
3 entries across 3 versions & 1 rubygems