]> git.r.bdr.sh - rbdr/r.bdr.sh/commitdiff
Removes old unlimitedpizza js
authorBen Beltran <redacted>
Sun, 22 Feb 2015 22:32:51 +0000 (16:32 -0600)
committerBen Beltran <redacted>
Sun, 22 Feb 2015 22:32:51 +0000 (16:32 -0600)
jekyll/js/unlimitedpizza.js [deleted file]

diff --git a/jekyll/js/unlimitedpizza.js b/jekyll/js/unlimitedpizza.js
deleted file mode 100644 (file)
index b2bf6ab..0000000
+++ /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
-    }
-  }
-});