1 
  2 /**
  3  * @name	CeL function for drag and drop
  4  * @fileoverview
  5  * 本檔案包含了 web drag and drop 的 functions。
  6  * @since	
  7  */
  8 
  9 /*
 10 http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html
 11 https://developer.mozilla.org/en/Using_files_from_web_applications
 12 http://html5demos.com/drag
 13 http://d.hatena.ne.jp/ksy_dev/20100731/p1?sid=810f738005e991c6
 14 
 15 */
 16 
 17 if (typeof CeL === 'function')
 18 CeL.setup_module('interact.drag-drop',
 19 {
 20 require : '',
 21 code : function(library_namespace, load_arguments) {
 22 
 23 //	requiring
 24 //var ;
 25 eval(library_namespace.use_function(this));
 26 
 27 
 28 
 29 /**
 30  * null module constructor
 31  * @class	web drag_and_drop 的 functions
 32  */
 33 CeL.interact.drag-drop
 34 = function() {
 35 	//	null module constructor
 36 };
 37 
 38 /**
 39  * for JSDT: 有 prototype 才會將之當作 Class
 40  */
 41 CeL.interact.drag-drop
 42 .prototype = {
 43 };
 44 
 45 
 46 
 47 /*	
 48 TODO:
 49 
 50 */
 51 
 52 
 53 
 54 
 55 
 56 
 57 
 58 return (
 59 	CeL.interact.drag-drop
 60 );
 61 }
 62 
 63 
 64 });
 65 
 66