This website works better with JavaScript.
Home
Explore
Help
Sign In
jan
/
mustache.js
mirror of
https://github.com/janl/mustache.js
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
46
Wiki
Activity
Browse Source
Fix an accidental global variable (tokenizer) in the create_compiler_state() function.
tags/0.5.2-vsc
Gregory Jacobs
14 years ago
parent
ffaabb8d2e
commit
e1eb886cba
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mustache.js
+ 1
- 1
mustache.js
View File
@@ -215,7 +215,7 @@ var Mustache = (function(undefined) {
openTag = openTag || '{{';
closeTag = closeTag || '}}';
var tokeniz
i
er;
var tokenizer;
if (openTag === '{{' && closeTag === '}}') {
tokenizer = default_tokenizer;
} else {
Write
Preview
Loading…
Cancel
Save