diff options
author | pabs@pablotron.org <pabs@pablotron.org> | 2014-12-18 02:47:58 -0500 |
---|---|---|
committer | pabs@pablotron.org <pabs@pablotron.org> | 2014-12-18 02:47:58 -0500 |
commit | 20318535911b183abd9131217dffc26108be27b4 (patch) | |
tree | af2abcc5503dd669c012e72e669a0f28a9e8facd | |
parent | 8c5f52eb71fef8dc2f05ef3b22e17ef47d0af3d7 (diff) | |
download | luigi-template-20318535911b183abd9131217dffc26108be27b4.tar.bz2 luigi-template-20318535911b183abd9131217dffc26108be27b4.zip |
remove options parameter from initv0.4.0
-rw-r--r-- | luigi-template.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/luigi-template.js b/luigi-template.js index e7e08b4..925b811 100644 --- a/luigi-template.js +++ b/luigi-template.js @@ -238,9 +238,8 @@ LuigiTemplate = (function() { return r; } - function init(s, o) { + function init(s) { this.s = s; - this.o = o; this.actions = parse_template(s); }; |