import from la bonne adresse and first refactoring for ouidade.com
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// Method of allowing calculated values for length units, i.e. width: calc(100%-3em) http://caniuse.com/#search=calc
|
||||
// By @calvein
|
||||
|
||||
Modernizr.addTest('csscalc', function() {
|
||||
var prop = 'width:';
|
||||
var value = 'calc(10px);';
|
||||
var el = document.createElement('div');
|
||||
|
||||
el.style.cssText = prop + Modernizr._prefixes.join(value + prop);
|
||||
|
||||
return !!el.style.length;
|
||||
});
|
||||
Reference in New Issue
Block a user