Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[e] (0) example typo
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=11100

git-svn-id: http://svn.whatwg.org/webapps@5775 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jan 11, 2011
1 parent 48ecd3a commit 463043e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion complete.html
Expand Up @@ -67450,7 +67450,7 @@ <h4 id=introduction-7><span class=secno>8.7.1 </span>Introduction</h4>
if (event.target instanceof HTMLLIElement) {
// use the element's data-value="" attribute as the value to be moving:
event.dataTransfer.setData(internalDNDType, event.target.dataset.value);
event.effectAllowed = 'move'; // only allow moves
event.dataTransfer.effectAllowed = 'move'; // only allow moves
} else {
event.preventDefault(); // don't allow selection to be dragged
}
Expand Down
2 changes: 1 addition & 1 deletion index
Expand Up @@ -67458,7 +67458,7 @@ interface <dfn id=navigatorabilities>NavigatorAbilities</dfn> {
if (event.target instanceof HTMLLIElement) {
// use the element's data-value="" attribute as the value to be moving:
event.dataTransfer.setData(internalDNDType, event.target.dataset.value);
event.effectAllowed = 'move'; // only allow moves
event.dataTransfer.effectAllowed = 'move'; // only allow moves
} else {
event.preventDefault(); // don't allow selection to be dragged
}
Expand Down
2 changes: 1 addition & 1 deletion source
Expand Up @@ -76841,7 +76841,7 @@ interface <dfn>NavigatorAbilities</dfn> {
if (event.target instanceof HTMLLIElement) {
// use the element's data-value="" attribute as the value to be moving:
event.dataTransfer.setData(internalDNDType, event.target.dataset.value);
event.effectAllowed = 'move'; // only allow moves
event.dataTransfer.effectAllowed = 'move'; // only allow moves
} else {
event.preventDefault(); // don't allow selection to be dragged
}
Expand Down

0 comments on commit 463043e

Please sign in to comment.