From: Ben Beltran Date: Sun, 22 Feb 2015 22:32:51 +0000 (-0600) Subject: Removes old unlimitedpizza js X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/commitdiff_plain/1ecca0cfbd049bebced9d93a9cdb75baadd54d63?ds=sidebyside;hp=cebe2ef30d60fdfbc73e43e910f13130f8d48418 Removes old unlimitedpizza js --- diff --git a/jekyll/js/unlimitedpizza.js b/jekyll/js/unlimitedpizza.js deleted file mode 100644 index b2bf6ab..0000000 --- a/jekyll/js/unlimitedpizza.js +++ /dev/null @@ -1,28 +0,0 @@ -Class("Unlimitedpizza").inherits(Widget)({ - prototype : { - _loaded : false, - - init : function (config) { - Widget.constructor.prototype.init.call(this, config) - - this._bindInternalEvents(); - }, - - _bindInternalEvents : function bindInternalEvents() { - this.bind('activate', this._onActivate.bind(this)); - this.bind('deactivate', this._onDeactivate.bind(this)); - }, - - _onActivate : function _activate() { - if (!this._loaded) { - this._load(); - } - }, - - _load : function _load() { - var meltyCheese; - - meltyCheese = new Unlimitedpizza.MeltyCheese - } - } -});