aboutsummaryrefslogtreecommitdiffstats
path: root/src/Compiler.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/Compiler.js')
-rw-r--r--src/Compiler.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Compiler.js b/src/Compiler.js
index d1505404..804a9622 100644
--- a/src/Compiler.js
+++ b/src/Compiler.js
@@ -178,9 +178,6 @@ Compiler.prototype = {
template,
selfApi = {
compile: bind(self, self.compile),
- comment:function(text) {return jqLite(document.createComment(text));},
- element:function(type) {return jqLite(document.createElement(type));},
- text:function(text) {return jqLite(document.createTextNode(text));},
descend: function(value){ if(isDefined(value)) descend = value; return descend;},
directives: function(value){ if(isDefined(value)) directives = value; return directives;},
scope: function(value){ if(isDefined(value)) template.newScope = template.newScope || value; return template.newScope;}