add a little more text to js doc for testing multicursor

This commit is contained in:
nightwing 2012-03-13 15:30:48 +04:00
commit 7f39633a5e

View file

@ -2,4 +2,25 @@ function foo(items) {
for (var i=0; i<items.length; i++) {
alert(items[i] + "juhu");
} // Real Tab.
}
object = {
abra = kadabra;
bar = baz;
boo = moo;
foo = opera;
}
object.say = function(items) {
var self = this;
setTimeout(function() {
console.log(this.abra)
console.log me(this.bar)
console.warn(this.boo)
console.error(this.foo)
}, 100)
}