hixie: example typo (whatwg r5775)

hixie: example typo (whatwg r5775)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4637&r2=1.4638&f=h
http://html5.org/tools/web-apps-tracker?from=5774&to=5775

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4637
retrieving revision 1.4638
diff -u -d -r1.4637 -r1.4638
--- Overview.html 11 Jan 2011 20:56:55 -0000 1.4637
+++ Overview.html 11 Jan 2011 21:12:35 -0000 1.4638
@@ -50847,7 +50847,7 @@
     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
     }

Received on Wednesday, 12 January 2011 02:43:57 UTC