removed unused parameter in templates.prepare

This commit is contained in:
psychobunny
2013-12-30 16:26:30 -05:00
parent 42d77080f3
commit 6dcd06b63c

View File

@@ -48,7 +48,7 @@
}
};
templates.prepare = function (raw_tpl, data) {
templates.prepare = function (raw_tpl) {
var template = {};
template.html = raw_tpl;
template.parse = parse;