add a little more text to js doc for testing multicursor
This commit is contained in:
parent
5050cc10b8
commit
7f39633a5e
1 changed files with 21 additions and 0 deletions
|
|
@ -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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue