- diff --git a/utils/tmpl.js b/utils/tmpl.js
- index 9ad46be..557dfc1 100644
- --- a/utils/tmpl.js
- +++ b/utils/tmpl.js
- @@ -202,7 +202,7 @@ jQuery.tmpl = {
- with ( ctx ) {
- // And all the computed variables
- with ( VARS ) {
- - return eval( "(" + code + ")" );
- + return eval( "(function() { return (" + code + "); })()" );
- }
- }
- }