summaryrefslogtreecommitdiff
path: root/lib/dojo/request/handlers.js
diff options
context:
space:
mode:
authorAnders Kaseorg <[email protected]>2017-01-20 12:29:59 -0500
committerAnders Kaseorg <[email protected]>2017-01-21 13:22:14 -0500
commit6887a0f57307820b097b51aee952c555bcf69024 (patch)
treeff041c03ac0251468eb4308927052f8bd6071ca3 /lib/dojo/request/handlers.js
parent9f539be3c2c93ce358b10ca396e922b3b99b56ea (diff)
lib: Upgrade Dojo and Dijit from 1.8.3 to 1.12.1
The itemNode and expandoNode elements have changed from img to span (https://bugs.dojotoolkit.org/ticket/16699), so we now put our tree icons inside them rather than replacing them. Signed-off-by: Anders Kaseorg <[email protected]>
Diffstat (limited to 'lib/dojo/request/handlers.js')
-rw-r--r--lib/dojo/request/handlers.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dojo/request/handlers.js b/lib/dojo/request/handlers.js
index 6718c461b..30e675987 100644
--- a/lib/dojo/request/handlers.js
+++ b/lib/dojo/request/handlers.js
@@ -1,8 +1,8 @@
/*
- Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
+ Copyright (c) 2004-2016, The JS Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
//>>built
-define("dojo/request/handlers",["../json","../_base/kernel","../_base/array","../has"],function(_1,_2,_3,_4){_4.add("activex",typeof ActiveXObject!=="undefined");var _5;if(_4("activex")){var dp=["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML.DOMDocument"];_5=function(_6){var _7=_6.data;if(!_7||!_7.documentElement){var _8=_6.text;_3.some(dp,function(p){try{var _9=new ActiveXObject(p);_9.async=false;_9.loadXML(_8);_7=_9;}catch(e){return false;}return true;});}return _7;};}var _a={"javascript":function(_b){return _2.eval(_b.text||"");},"json":function(_c){return _1.parse(_c.text||null);},"xml":_5};function _d(_e){var _f=_a[_e.options.handleAs];_e.data=_f?_f(_e):(_e.data||_e.text);return _e;};_d.register=function(_10,_11){_a[_10]=_11;};return _d;}); \ No newline at end of file
+define("dojo/request/handlers",["../json","../_base/kernel","../_base/array","../has","../selector/_loader"],function(_1,_2,_3,_4){_4.add("activex",typeof ActiveXObject!=="undefined");_4.add("dom-parser",function(_5){return "DOMParser" in _5;});var _6;if(_4("activex")){var dp=["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML.DOMDocument"];var _7;_6=function(_8){var _9=_8.data;var _a=_8.text;if(_9&&_4("dom-qsa2.1")&&!_9.querySelectorAll&&_4("dom-parser")){_9=new DOMParser().parseFromString(_a,"application/xml");}function _b(p){try{var _c=new ActiveXObject(p);_c.async=false;_c.loadXML(_a);_9=_c;_7=p;}catch(e){return false;}return true;};if(!_9||!_9.documentElement){if(!_7||!_b(_7)){_3.some(dp,_b);}}return _9;};}var _d=function(_e){if(!_4("native-xhr2-blob")&&_e.options.handleAs==="blob"&&typeof Blob!=="undefined"){return new Blob([_e.xhr.response],{type:_e.xhr.getResponseHeader("Content-Type")});}return _e.xhr.response;};var _f={"javascript":function(_10){return _2.eval(_10.text||"");},"json":function(_11){return _1.parse(_11.text||null);},"xml":_6,"blob":_d,"arraybuffer":_d,"document":_d};function _12(_13){var _14=_f[_13.options.handleAs];_13.data=_14?_14(_13):(_13.data||_13.text);return _13;};_12.register=function(_15,_16){_f[_15]=_16;};return _12;}); \ No newline at end of file