File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,15 +88,15 @@ Here live http://marcj.github.io/css-element-queries/.
88
88
If you're using a module loader you need to trigger the event listening or initialization yourself:
89
89
90
90
``` javascript
91
- var EQ = require (' node_modules/ css-element-queries/ElementQueries' );
91
+ var ElementQueries = require (' css-element-queries/src /ElementQueries' );
92
92
93
93
// attaches to DOMLoadContent
94
- EQ .listen ();
94
+ ElementQueries .listen ();
95
95
96
96
// or if you want to trigger it yourself.
97
97
// Parse all available CSS and attach ResizeSensor to those elements which have rules attached
98
98
// (make sure this is called after 'load' event, because CSS files are not ready when domReady is fired.
99
- EQ .init ();
99
+ ElementQueries .init ();
100
100
```
101
101
102
102
## Issues
You can’t perform that action at this time.
0 commit comments