diff --git a/js/controller/PreviewFilmController.js b/js/controller/PreviewFilmController.js index a80f3db9..e317497c 100644 --- a/js/controller/PreviewFilmController.js +++ b/js/controller/PreviewFilmController.js @@ -94,10 +94,11 @@ * @private */ ns.PreviewFilmController.prototype.initDragndropBehavior_ = function () { - + $("#preview-list").sortable({ placeholder: "preview-tile-drop-proxy", - update: $.proxy(this.onUpdate_, this) + update: $.proxy(this.onUpdate_, this), + items: "li:not(#add-frame-action)" }); $("#preview-list").disableSelection(); };