Commit d8d763b0 authored by estade@chromium.org's avatar estade@chromium.org

fix dnd in bookmark manager

preventDefault in handleDrop, as suggested by arv

BUG=122850
TEST=manual

Review URL: https://chromiumcodereview.appspot.com/10065034

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132203 0039d316-1c4b-4281-b951-d872f2087c98
parent babb0093
...@@ -766,6 +766,8 @@ var dnd = { ...@@ -766,6 +766,8 @@ var dnd = {
else else
chrome.experimental.bookmarkManager.drop(parentId); chrome.experimental.bookmarkManager.drop(parentId);
e.preventDefault();
// TODO(arv): Select the newly dropped items. // TODO(arv): Select the newly dropped items.
} }
this.dropDestination = null; this.dropDestination = null;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment