diff options
author | Andrei Picus <office.nightcrawler@gmail.com> | 2013-10-17 17:20:11 +0300 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-10-18 17:30:32 +0200 |
commit | 06c4387bc94f0f71c202f8ce6b6a0551b8340506 (patch) | |
tree | 45f05a428b81a45bb7afe0035711f1f03ec617f7 | |
parent | 93a2dcde527ac2511264b574b90f3bb1ce26cba7 (diff) | |
download | jquery-ui-06c4387bc94f0f71c202f8ce6b6a0551b8340506.tar.gz jquery-ui-06c4387bc94f0f71c202f8ce6b6a0551b8340506.zip |
Sortable: Fix typo and break lines in comment.
-rw-r--r-- | ui/jquery.ui.sortable.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/jquery.ui.sortable.js b/ui/jquery.ui.sortable.js index 9c7bf446c..c76a02397 100644 --- a/ui/jquery.ui.sortable.js +++ b/ui/jquery.ui.sortable.js @@ -354,12 +354,12 @@ $.widget("ui.sortable", $.ui.mouse, { } // Only put the placeholder inside the current Container, skip all - // items form other containers. This works because when moving + // items from other containers. This works because when moving // an item from one container to another the // currentContainer is switched before the placeholder is moved. // - // Without this moving items in "sub-sortables" can cause the placeholder to jitter - // beetween the outer and inner container. + // Without this, moving items in "sub-sortables" can cause + // the placeholder to jitter beetween the outer and inner container. if (item.instance !== this.currentContainer) { continue; } |