Вход Регистрация
Файл: Arhmobi_esdcms/games/2048/js/classlist_polyfill.js
Строк: 90
<?php
(function () {
  if (
typeof window.Element === "undefined" ||
      
"classList" in document.documentElement) {
    return;
  }

  var 
prototype = Array.prototype,
      
push prototype.push,
      
splice prototype.splice,
      
join prototype.join;

  function 
DOMTokenList(el) {
    
this.el el;
    
// The className needs to be trimmed and split on whitespace
    // to retrieve a list of classes.
    
var classes el.className.replace(/^s+|s+$/g'').split(/s+/);
    for (var 
0classes.lengthi++) {
      
push.call(thisclasses[i]);
    }
  }

  
DOMTokenList.prototype = {
    
add: function (token) {
      if (
this.contains(token)) return;
      
push.call(thistoken);
      
this.el.className this.toString();
    },
    
contains: function (token) {
      return 
this.el.className.indexOf(token) != -1;
    },
    
item: function (index) {
      return 
this[index] || null;
    },
    
remove: function (token) {
      if (!
this.contains(token)) return;
      for (var 
0this.lengthi++) {
        if (
this[i] == token) break;
      }
      
splice.call(thisi1);
      
this.el.className this.toString();
    },
    
toString: function () {
      return 
join.call(this' ');
    },
    
toggle: function (token) {
      if (!
this.contains(token)) {
        
this.add(token);
      } else {
        
this.remove(token);
      }

      return 
this.contains(token);
    }
  };

  
window.DOMTokenList DOMTokenList;

  function 
defineElementGetter(objpropgetter) {
    if (
Object.defineProperty) {
      
Object.defineProperty(objprop, {
        
getgetter
      
});
    } else {
      
obj.__defineGetter__(propgetter);
    }
  }

  
defineElementGetter(HTMLElement.prototype'classList', function () {
    return new 
DOMTokenList(this);
  });
})();
?>
Онлайн: 0
Реклама