summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilson Page <wilsonpage@me.com>2013-10-05 10:40:31 +0100
committerWilson Page <wilsonpage@me.com>2013-10-05 10:40:31 +0100
commit0f7caf87d68b9f508e18214b72fd8e5d57f0f81e (patch)
tree0f49a69aeaba67b9b52d547372e5b1693e531bbb
parent3c826b35e300a72c0d1e2f523b329c30f8fc71b7 (diff)
downloadfastdom-0f7caf87d68b9f508e18214b72fd8e5d57f0f81e.zip
fastdom-0f7caf87d68b9f508e18214b72fd8e5d57f0f81e.tar.gz
fastdom-0f7caf87d68b9f508e18214b72fd8e5d57f0f81e.tar.bz2
Remove is no longer used
-rw-r--r--index.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/index.js b/index.js
index 71e69a4..5b2b439 100644
--- a/index.js
+++ b/index.js
@@ -247,19 +247,6 @@
};
};
- /**
- * Removes a job from
- * the given queue.
- * @param {Array} list
- * @param {Number} id
- * @api private
- */
- FastDom.prototype._remove = function(list, id) {
- var index = list.indexOf(id);
- if (~index) list.splice(index, 1);
- delete this.jobs[id];
- };
-
// We only ever want there to be
// one instance of FastDom in an app
fastdom = fastdom || new FastDom();