Sha256: 25c4093389abfd176832d588af26c9708fc866eda63eb4b6a573220dd8ad346f

Contents?: true

Size: 462 Bytes

Versions: 110

Compression:

Stored size: 462 Bytes

Contents

if (!window.getComputedStyle) {
  window.getComputedStyle = function(el, pseudo) {
    this.el = el;
    this.getPropertyValue = function(prop) {
      var re = /(\-([a-z]){1})/g;
      if (prop == 'float') prop = 'styleFloat';
      if (re.test(prop)) {
        prop = prop.replace(re, function () {
          return arguments[2].toUpperCase();
        });
      }
      return el.currentStyle[prop] ? el.currentStyle[prop] : null;
    }
    return this;
  }
}

Version data entries

110 entries across 110 versions & 1 rubygems

Version Path
pageflow-17.0.4 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-17.0.3 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-17.0.2 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-17.0.1 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-17.0.0 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-16.2.0 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-16.1.0 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-16.0.0 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.8.0 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-14.5.2 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.7.1 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.7.0 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.6.1 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.6.0 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.5.0 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.4.0 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.3.0 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.2.2 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.2.1 vendor/assets/javascripts/polyfills/get_computed_style.js
pageflow-15.2.0 vendor/assets/javascripts/polyfills/get_computed_style.js