fixed minor JS codestyle issues

This commit is contained in:
Alexander Makarov
2013-05-13 19:55:07 +04:00
parent 0f7f193623
commit 31a46f5bcf
2 changed files with 3 additions and 3 deletions

View File

@@ -51,8 +51,8 @@
dataType: 'json', dataType: 'json',
cache: false, cache: false,
success: function(data) { success: function(data) {
$e.attr('src', data['url']); $e.attr('src', data.url);
$('body').data(settings.hashKey, [data['hash1'], data['hash2']]); $('body').data(settings.hashKey, [data.hash1, data.hash2]);
} }
}); });
}, },