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',
cache: false,
success: function(data) {
$e.attr('src', data['url']);
$('body').data(settings.hashKey, [data['hash1'], data['hash2']]);
$e.attr('src', data.url);
$('body').data(settings.hashKey, [data.hash1, data.hash2]);
}
});
},