Skip to content

Commit

Permalink
Merge pull request xbmc#6668 from mkortstiege/typo_webif
Browse files Browse the repository at this point in the history
[webinterface.default] fixed typo (closes xbmc#15844 - thanks b1m1)
  • Loading branch information
Montellese committed Mar 9, 2015
2 parents b03001c + b7adb47 commit ccd3dca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/webinterface.default/js/xbmc.core.js
Expand Up @@ -32,10 +32,10 @@
});
},
'displayCommunicationError': function (m) {
window.clearTimeout(xbmc.core.commsErrorTiemout);
window.clearTimeout(xbmc.core.commsErrorTimeout);
var message = m || 'Connection to server lost';
$('#commsErrorPanel').html(message).show();
xbmc.core.commsErrorTiemout = window.setTimeout('xbmc.core.hideCommunicationError()', 5000);
xbmc.core.commsErrorTimeout = window.setTimeout('xbmc.core.hideCommunicationError()', 5000);
},
'durationToString': function (duration) {
var total_seconds = duration || 0,
Expand Down

0 comments on commit ccd3dca

Please sign in to comment.