Skip to content

Commit

Permalink
Merge branch 'fru-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
aj committed Aug 16, 2015
2 parents 31beab9 + 73bf16d commit a2a81da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/skel.js
Expand Up @@ -884,12 +884,12 @@ var skel = (function() { "use strict"; var _ = {
return true;

// Parse query.
var s, a, b, k, values = { 'min-width': null, 'max-width': null },
var s, a, b, values = { 'min-width': null, 'max-width': null },
found = false;

a = query.split(/\s+and\s+/);

for (k in a) {
for (var k = 0; k < a.length; k++) {

s = a[k];

Expand Down Expand Up @@ -1041,4 +1041,4 @@ var skel = (function() { "use strict"; var _ = {
else
root.skel = factory();

}(this, function() { return skel; }));
}(this, function() { return skel; }));

0 comments on commit a2a81da

Please sign in to comment.