mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 20:21:29 +00:00
update dojo to 1.7.3
This commit is contained in:
@@ -4,36 +4,5 @@
|
||||
see: http://dojotoolkit.org/license for details
|
||||
*/
|
||||
|
||||
|
||||
if(!dojo._hasResource["dojo.dnd.common"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
|
||||
dojo._hasResource["dojo.dnd.common"] = true;
|
||||
dojo.provide("dojo.dnd.common");
|
||||
|
||||
dojo.getObject("dnd", true, dojo);
|
||||
|
||||
dojo.dnd.getCopyKeyState = dojo.isCopyKey;
|
||||
|
||||
dojo.dnd._uniqueId = 0;
|
||||
dojo.dnd.getUniqueId = function(){
|
||||
// summary:
|
||||
// returns a unique string for use with any DOM element
|
||||
var id;
|
||||
do{
|
||||
id = dojo._scopeName + "Unique" + (++dojo.dnd._uniqueId);
|
||||
}while(dojo.byId(id));
|
||||
return id;
|
||||
};
|
||||
|
||||
dojo.dnd._empty = {};
|
||||
|
||||
dojo.dnd.isFormElement = function(/*Event*/ e){
|
||||
// summary:
|
||||
// returns true if user clicked on a form element
|
||||
var t = e.target;
|
||||
if(t.nodeType == 3 /*TEXT_NODE*/){
|
||||
t = t.parentNode;
|
||||
}
|
||||
return " button textarea input select option ".indexOf(" " + t.tagName.toLowerCase() + " ") >= 0; // Boolean
|
||||
};
|
||||
|
||||
}
|
||||
//>>built
|
||||
define("dojo/dnd/common",["../main"],function(_1){_1.getObject("dnd",true,_1);_1.dnd.getCopyKeyState=_1.isCopyKey;_1.dnd._uniqueId=0;_1.dnd.getUniqueId=function(){var id;do{id=_1._scopeName+"Unique"+(++_1.dnd._uniqueId);}while(_1.byId(id));return id;};_1.dnd._empty={};_1.dnd.isFormElement=function(e){var t=e.target;if(t.nodeType==3){t=t.parentNode;}return " button textarea input select option ".indexOf(" "+t.tagName.toLowerCase()+" ")>=0;};return _1.dnd;});
|
||||
Reference in New Issue
Block a user