-
-
Save triptych/907840 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm install yui-repl; | |
| yui3; | |
| YUI@3.3.0> .load http://yuilibrary.com/ | |
| Resetting Y to the default state [done] | |
| Fetching URL: http://yuilibrary.com/ [done] | |
| YUI@3.3.0> .debug | |
| Setting debug on the Y instance to: true | |
| YUI@3.3.0> .get https://gist.github.com/raw/906348/d8905da82e08bc55d8c5f879a4a3eb2fa5dea4d4/include.js | |
| Fetching Script: https://gist.github.com/raw/906348/d8905da82e08bc55d8c5f879a4a3eb2fa5dea4d4/include.js [done] | |
| YUI@3.3.0> .use davglass | |
| Using modules: davglass [done] | |
| YUI@3.3.0> Y.davglass(); | |
| info: This page has 90 hrefs on it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| YUI.add('davglass', function(Y) { | |
| Y.davglass = function() { | |
| var a = Y.all('a').size(); | |
| Y.log('This page has ' + a + ' hrefs on it.'); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment