From cc0039f6c9069f866ee2a48972aff1dd76797a3e Mon Sep 17 00:00:00 2001 From: Simon Harriyott Date: Fri, 1 May 2015 15:44:04 +0100 Subject: [PATCH] Fixed typo: beeing => being. --- source/js/jquery-sortable.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/js/jquery-sortable.js b/source/js/jquery-sortable.js index 52c2432..db5edb2 100644 --- a/source/js/jquery-sortable.js +++ b/source/js/jquery-sortable.js @@ -88,7 +88,7 @@ $item.css(position) }, // Called after the drag has been started, - // that is the mouse button is beeing held down and + // that is the mouse button is being held down and // the mouse is moving. // The container is the closest initialized container. // Therefore it might not be the container, that actually contains the item. @@ -100,7 +100,7 @@ $item.addClass(container.group.options.draggedClass) $("body").addClass(container.group.options.bodyClass) }, - // Called when the mouse button is beeing released + // Called when the mouse button is being released onDrop: function ($item, container, _super, event) { $item.removeClass(container.group.options.draggedClass).removeAttr("style") $("body").removeClass(container.group.options.bodyClass)