aboutsummaryrefslogtreecommitdiffstats
path: root/src/object.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2012-12-17 19:39:52 +0100
committerwout <wout@impinc.co.uk>2012-12-17 19:39:52 +0100
commit8dfec33b4fa79b89d89a07e3ae92c5d5c5f8ce73 (patch)
tree7caa493057b543ac40008770fdb4df566995c4e7 /src/object.js
parent6a013f19d6fa84e538d31bca5f1466c5f3479630 (diff)
downloadsvg.js-8dfec33b4fa79b89d89a07e3ae92c5d5c5f8ce73.tar.gz
svg.js-8dfec33b4fa79b89d89a07e3ae92c5d5c5f8ce73.zip
Code slimming
Diffstat (limited to 'src/object.js')
-rw-r--r--src/object.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/object.js b/src/object.js
deleted file mode 100644
index 1ec7ecc..0000000
--- a/src/object.js
+++ /dev/null
@@ -1,31 +0,0 @@
-
-//SVG.Object = function Object() {};
-//
-//Object.prototype.include = function(module) {
-//
-// for (var key in module)
-// this.prototype[key] = module[key];
-//
-// if (module.included != null)
-// module.included.apply(this);
-//
-// return this;
-//};
-
-//SVG.Object = function Object() {};
-//
-//SVG.Object.moduleKeywords = ['included', 'extended'];
-//
-//SVG.Object.include = function(module) {
-// var key, value, _ref;
-// for (key in module) {
-// value = module[key];
-// if (Array.prototype.indexOf.call(this.moduleKeywords, key) < 0) {
-// this.prototype[key] = value;
-// }
-// }
-// if ((_ref = module.included) != null) {
-// _ref.apply(this);
-// }
-// return this;
-//}; \ No newline at end of file