File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 291291 $ ( document ) . bind ( "keydown.scrollable" , function ( evt ) {
292292
293293 // skip certain conditions
294- if ( ! conf . keyboard || evt . altKey || evt . ctrlKey || $ ( evt . target ) . is ( ":input" ) ) { return ; }
294+ if ( ! conf . keyboard || evt . altKey || evt . ctrlKey || evt . metaKey || $ ( evt . target ) . is ( ":input" ) ) {
295+ return ;
296+ }
295297
296298 // does this instance have focus?
297299 if ( conf . keyboard != 'static' && current != self ) { return ; }
Original file line number Diff line number Diff line change 11
2- < script src ="../js/jquery-1.3.2 .js "> </ script >
2+ < script src ="../js/jquery-1.5.min .js "> </ script >
33< script src ="../../src/scrollable/scrollable.js "> </ script >
44
55< link rel ="stylesheet " type ="text/css " href ="style.css "/>
3232
3333 < div class ="items ">
3434 < div > 0</ div >
35- <!-- < div>1</div>
35+ < div > 1</ div >
3636 < div > 2</ div >
3737 < div > 3</ div >
3838 < div > 4</ div >
3939 < div > 5</ div >
40- <div>6</div> -->
40+ < div > 6</ div >
4141 </ div >
4242
4343 </ div >
Original file line number Diff line number Diff line change 4848
4949 < label >
5050 date
51- < input type ="date " title ="Use format yyyy-mm-dd " name ="day " required =" required " />
51+ < input type ="date " title ="Use format yyyy-mm-dd " name ="day " required />
5252 </ label >
5353
5454 < label >
You can’t perform that action at this time.
0 commit comments