Skip to content

Instantly share code, notes, and snippets.

@webOS101
Forked from webOS101/fiddle.html
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webOS101/54af9d65929abdef5f9f to your computer and use it in GitHub Desktop.
Save webOS101/54af9d65929abdef5f9f to your computer and use it in GitHub Desktop.
Collection Sample
<div id="jsconsole">
<form>
<textarea autofocus id="exec" spellcheck="false" autocapitalize="off" autofocus rows="1"> </textarea>
</form>
<div id="console">
<ul id="output"></ul>
</div>
</div>
<div id="footer"><a href="http://github.com/remy/jsconsole">Fork on Github</a> &bull; <a href="http://twitter.com/rem">Console built by @rem</a></div><script src="http://enyo-upandrunning.github.io/prettify.js"></script>
<script>
window.JSCONSOLE = {
contentWindow: this,
contentDocument: document,
console: document.getElementById('jsconsole')
};
</script>
<script src="http://enyo-upandrunning.github.io/console.js"></script>
<script>
_console.post("fruits.at(0).get('name');");
_console.post("fruits.add({ name: 'rambutan' });\n\nfruits.at(fruits.length-1).get('name');");
</script>
var fruits = new enyo.Collection([
{ name: 'apple' },
{ name: 'cherry' },
{ name: 'banana' }
]);
name: Collection Sample
description: Create a Collection and see it in action
authors:
- Roy Sutton
resources:
- http://enyo-upandrunning.github.io/console.css
normalize_css: no
@webOS101
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment