mirror of https://github.com/twbs/ratchet.git
Build mobile apps with simple HTML, CSS, and JS components.
http://goratchet.com/
27 lines
962 B
27 lines
962 B
/* ======================================================================== |
|
* Ratchet: common.js v2.0.2 |
|
* http://goratchet.com/ |
|
* ======================================================================== |
|
* Copyright 2015 Connor Sears |
|
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE) |
|
* ======================================================================== */ |
|
|
|
!(function () { |
|
'use strict'; |
|
|
|
// Original script from http://davidwalsh.name/vendor-prefix |
|
var getBrowserCapabilities = (function () { |
|
var styles = window.getComputedStyle(document.documentElement, ''); |
|
var pre = (Array.prototype.slice |
|
.call(styles) |
|
.join('') |
|
.match(/-(moz|webkit|ms)-/) || (styles.OLink === '' && ['', 'o']) |
|
)[1]; |
|
return { |
|
prefix: '-' + pre + '-', |
|
transform: pre[0].toUpperCase() + pre.substr(1) + 'Transform' |
|
}; |
|
})(); |
|
|
|
window.getBrowserCapabilities = getBrowserCapabilities; |
|
}());
|
|
|