prototype: Remove useless binding in Template#evaluate.

This commit is contained in:
Tobie Langel 2008-01-14 01:38:28 +00:00
parent ac48714ada
commit 7cd956d9c4
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
*SVN*
* Remove useless binding in Template#evaluate. [Tobie Langel]
* Make Object.inspect more robust. [Tobie Langel]
* Add a description to :test and :dist rake tasks. [Christoph Sturm]

View File

@ -260,7 +260,7 @@ var Template = Class.create({
}
return before + String.interpret(ctx);
}.bind(this));
});
}
});
Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/;