From: Benjamin H盲ublein Date: Sat, 26 Sep 2015 12:32:14 +0000 (+0200) Subject: check if element is sortable before removing sortable property X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=5234e97d5eb6159ef8ce3652cd19e4eee0bec7dd;p=ympd.git check if element is sortable before removing sortable property --- diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js index fb2dd82..b30bd6c 100644 --- a/htdocs/js/mpd.js +++ b/htdocs/js/mpd.js @@ -273,7 +273,9 @@ function webSocketConnect() { * some browsers, such as Safari, from changing the normalization form of the * URI from NFD to NFC, breaking our link with MPD. */ - $('#salamisandwich > tbody').sortable('destroy'); + if ($('#salamisandwich > tbody').is(':ui-sortable')) { + $('#salamisandwich > tbody').sortable('destroy'); + } for (var item in obj.data) { switch(obj.data[item].type) { case "directory":