Skip to content

Commit

Permalink
src : v1.0.02 - remove unnecessary !!
Browse files Browse the repository at this point in the history
Good call @yuchi
  • Loading branch information
desandro committed Dec 8, 2011
1 parent ff13e74 commit 21e6a8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions masonry.js
@@ -1,5 +1,5 @@
/**
* Vanilla Masonry v1.0.01
* Vanilla Masonry v1.0.02
* Dynamic layouts for the flip-side of CSS Floats
* http://vanilla-masonry.desandro.com
*
Expand All @@ -18,7 +18,7 @@
// from bonzo.js, by Dustin Diaz - https://github.com/ded/bonzo

// use classList API if available
var supportClassList = !!( 'classList' in document.createElement('div') );
var supportClassList = 'classList' in document.createElement('div');

function classReg(c) {
return new RegExp("(^|\\s+)" + c + "(\\s+|$)");
Expand Down
2 changes: 1 addition & 1 deletion masonry.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 21e6a8c

Please sign in to comment.