colResizable icon indicating copy to clipboard operation
colResizable copied to clipboard

Ie8 operation error

Open viaco2ove opened this issue 7 years ago • 0 comments

Problem solving way:

//In the Array on the prototype chain extension indexOf method (function($){
if(!Array.prototype.indexOf){ Array.prototype.indexOf = function(val){ var value = this; for(var i =0; i < value.length; i++){ if(value[i] == val) return i; } return -1; }; } ...})(jQuery);

viaco2ove avatar Jun 15 '18 01:06 viaco2ove