Fixes nunjucks compat reference to undefined obj

This commit is contained in:
Jeremy Stanley 2014-01-29 10:45:54 -08:00
Родитель 35dae6e660
Коммит b027406b0d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -25,7 +25,7 @@ define('nunjucks.compat', ['nunjucks'], function(nunjucks) {
var ARRAY_MEMBERS = {
pop: function(index) {
if (index === undefined) {
return obj.pop();
return this.pop();
}
if (index >= this.length || index < 0) {
throw new Error('KeyError');