Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/plugin/mindmap/edit-mindmap/vendor/js/kampfer/support.js

18 lines
317 B

/**
* 用于检测浏览器的功能特性
* @module support.js
* @author l.w.kampfer@gmail.com
*/
kampfer.provide('browser.support');
kampfer.browser.support.deleteExpando = (function() {
var div = document.createElement('div');
try{
delete div.test;
return true;
} catch(e) {
return false;
}
})();