Browse Source

src : make "use strict" comes first in min.js

pull/139/head
David DeSandro 13 years ago
parent
commit
afd01aa720
  1. 4
      jquery.isotope.js
  2. 2
      jquery.isotope.min.js

4
jquery.isotope.js

@ -17,7 +17,7 @@
'use strict';
// helper function
function capitalize(str) {
var capitalize = function( str ) {
return str.charAt(0).toUpperCase() + str.slice(1);
}
@ -26,7 +26,7 @@
var prefixes = 'Moz Webkit Khtml O Ms'.split(' ');
function getStyleProperty( propName ) {
var getStyleProperty = function( propName ) {
var style = document.documentElement.style,
prefixed;

2
jquery.isotope.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save