Merge pull request #2211 from minrk/data-selector

Don't use jquery-ui data selector
pull/2224/head
Thomas Kluyver 9 years ago committed by GitHub
commit 076f4e9301

@ -1024,7 +1024,7 @@ define([
* Remove the deleted notebook.
*/
var that = this;
$( ":data(path)" ).each(function() {
$(".list_item").each(function() {
var element = $(this);
if (element.data("path") === path) {
element.remove();

Loading…
Cancel
Save