diff options
author | David DeSandro <desandrocodes@gmail.com> | 2015-10-28 21:39:13 -0400 |
---|---|---|
committer | David DeSandro <desandrocodes@gmail.com> | 2015-10-28 21:39:13 -0400 |
commit | d3f0ba5e9f313d65b619fe653d15ff19c83dcd38 (patch) | |
tree | 882688e03b3114274b3c371131079a1ee2e69c11 | |
parent | f44d6d33035b4095939726f9b4c7abd0f2dcca0e (diff) | |
download | imagesloaded-d3f0ba5e9f313d65b619fe653d15ff19c83dcd38.zip imagesloaded-d3f0ba5e9f313d65b619fe653d15ff19c83dcd38.tar.gz imagesloaded-d3f0ba5e9f313d65b619fe653d15ff19c83dcd38.tar.bz2 |
README specify js code blocks
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -243,7 +243,7 @@ imagesLoaded works with [Browserify](http://browserify.org/). npm install imagesloaded --save ``` -``` +``` js var imagesLoaded = require('imagesloaded'); imagesLoaded( elem, function() {...} ); @@ -251,7 +251,7 @@ imagesLoaded( elem, function() {...} ); Use `.makeJQueryPlugin` to make to use `.imagesLoaded()` jQuery plugin. -``` +``` js var $ = require('jquery'); var imagesLoaded = require('imagesloaded'); |