This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open -na "Google Chrome" --args --disable-web-security --user-data-dir=/tmp/junk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("body *").on('keydown', function(event) { | |
var keyCode = event.which; | |
if (keyCode == 9) { | |
console.log(event.target); | |
inspect(event.target); | |
} | |
event.stopPropagation(); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Extend for infinite scrolling capabilities. | |
* | |
* "addMore" function must be implemented in the child view. | |
* The infinite scrolling is disabled by default, must be enabled from the child view when initialized or ready. | |
* | |
* Uses jquery waypoints - http://imakewebthings.com/jquery-waypoints/ | |
* | |
* Config options: | |
* - endOfList: id of the way-point element |
NewerOlder