This file contains 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
{ | |
"indent_size": 4, | |
"indent_char": " ", | |
"eol": "\n", | |
"indent_level": 0, | |
"indent_with_tabs": false, | |
"preserve_newlines": true, | |
"max_preserve_newlines": 10, | |
"jslint_happy": false, | |
"space_after_anon_function": false, |
This file contains 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
root = true | |
[*] | |
indent_style = space | |
indent_size = 4 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
This file contains 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
if [ "$#" -ne 1 ]; then | |
echo | |
echo "Usage: run_android.sh <app_dir>" | |
echo | |
exit 1 | |
fi | |
app=$1 | |
# Uncomment the code below to check for a running Genymotion emulator |
This file contains 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
if [ "$#" -ne 4 ]; then | |
echo | |
echo "Usage: run_ios.sh <iphone/ipad> <7.0.3/7.1/8.1> <stop_simulator/no_stop_simulator> <app_dir>" | |
echo | |
exit 1 | |
fi | |
if [ $1 = "iphone" ]; then | |
platform=iphone | |
elif [ $1 = "ipad" ]; then |
This file contains 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
Show hidden characters
{ | |
"predef": [ | |
"Ti", | |
"Titanium", | |
"Alloy", | |
"Widget", | |
"describe", | |
"it", | |
"before", | |
"beforeEach", |
This file contains 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
$('.lt-ie9 input[placeholder], .lt-ie9 textarea[placeholder]').each(function(){ | |
var $this = $(this), | |
placeholder = $this.attr('placeholder'); | |
$this.addClass('placeholder').val(placeholder); | |
$this.focus(function() { | |
$this.val(''); | |
}).blur(function() { | |
if ($this.val() === '') { |
This file contains 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
/** | |
* Create cross browser transition CSS | |
* | |
* @param {Integer} duration Duration in milliseconds. | |
* @param {String} easing Easing function. Can be built-in CSS3 function or one of the provided custom functions. | |
* @param {String} prop CSS property to apply transition to. | |
*/ | |
function transitionCss(duration, easing, prop) { | |
var easingDefs = { | |
easeInCubic : 'cubic-bezier(0.550, 0.055, 0.675, 0.190)', |
This file contains 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
{ | |
"westEurope": [ | |
"AD", | |
"DE", | |
"ES", | |
"FR", | |
"IT", | |
"AT", | |
"BE", | |
"CH", |
This file contains 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
$(document).observe('dom:loaded', function(){ | |
new Shodan.UI.Slideshow('slideshow-demo'); | |
}); |
This file contains 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
<div id="slideshow-demo"> | |
<img src="images/slideshow/Pensive Parakeet.jpg" alt="Slide 1" /> | |
<img src="images/slideshow/Random-Penguins-random-16779663-1024-768.jpg" alt="Slide 2" /> | |
<img src="images/slideshow/Random-Wallpapers-random-10799667-1024-768.jpg" alt="Slide 3" /> | |
<img src="images/slideshow/Random-Wallpapers-random-10799672-1024-768.jpg" alt="Slide 4" /> | |
</div> |
NewerOlder