Digital Office Automation System Backend
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

jstools.js 515B

il y a 1 jour
1234567891011121314151617181920212223
  1. if (typeof(console) == "undefined") {
  2. var console = {
  3. info: function(){},
  4. warn: function(){},
  5. error: function(){},
  6. log: function(){},
  7. time: function(){},
  8. timeEnd: function(){}
  9. };
  10. }
  11. if(!Array.isArray) {
  12. Array.isArray = function (vArg) {
  13. return Object.prototype.toString.call(vArg) === "[object Array]";
  14. };
  15. }
  16. if (!Object.isSVGElement) {
  17. Object.isSVGElement = function(vArg) {
  18. var str = Object.prototype.toString.call(vArg);
  19. return (str.indexOf("[object SVG") == 0);
  20. };
  21. }