Merge pull request #23 from dannywarren/misc_js_syntax_fixes

fixing misc javascript syntax errors
This commit is contained in:
ziahamza 2012-09-04 21:26:10 -07:00
commit d6e1279cfb

View File

@ -35,7 +35,7 @@ var set_conf_cookie = function() {
setCookie('aria2_server_conf', JSON.stringify(server_conf), 30 * 12); setCookie('aria2_server_conf', JSON.stringify(server_conf), 30 * 12);
} }
var get_conf_cookie = function() { var get_conf_cookie = function() {
if (getCookie('aria2_server_conf'.trim())) { if (getCookie( $.trim('aria2_server_conf'))) {
server_conf = JSON.parse(getCookie('aria2_server_conf')); server_conf = JSON.parse(getCookie('aria2_server_conf'));
} }
} }
@ -508,7 +508,7 @@ function getTemplateCtx(data) {
connections: data.connections, connections: data.connections,
upload_speed: changeLength(data.uploadSpeed, "B/s"), upload_speed: changeLength(data.uploadSpeed, "B/s"),
booleans: { booleans: {
is_error: data.status === "error", is_error: data.status === "error"
}, },
chunks: chunks, chunks: chunks,
bittorrent: !!data.bittorrent bittorrent: !!data.bittorrent