Skip to content

Commit 37342cb

Browse files
committed
adjust example-html.
1 parent 9ca2576 commit 37342cb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

examples/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@ <h3>Advanced Use</h3>
108108
console.log('Scroll', top);
109109
document.querySelector('.dev .t1').innerHTML = top;
110110
},
111-
Change: function(item, pos){
112-
console.log('Change', item, pos);
111+
Change: function(item, pos, obj, top){
112+
console.log('Change', item, pos, obj,top);
113113
document.querySelector('.dev .t2').innerHTML = pos;
114114
},
115-
In: function(item, pos){
116-
console.log('In', item, pos);
115+
In: function(item, pos, obj, top){
116+
console.log('In', item, pos, obj, top);
117117
},
118-
Out: function(item, pos){
119-
console.log('Out', item, pos);
118+
Out: function(item, pos, obj, top){
119+
console.log('Out', item, pos, obj, top);
120120
}
121121
}
122122
});

0 commit comments

Comments
 (0)