AdminBSBMaterialDesign [https://github.com/gurayyarar/AdminBSBMaterialDesign]
AdminLTE [https://github.com/almasaeed2010/AdminLTE]
# source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
# A list of available STUN server. | |
stun.l.google.com:19302 | |
stun1.l.google.com:19302 | |
stun2.l.google.com:19302 | |
stun3.l.google.com:19302 | |
stun4.l.google.com:19302 | |
stun01.sipphone.com | |
stun.ekiga.net |
stun.l.google.com:19302 |
#for build tools
package like node-gyp require this command
npm install --global --production windows-build-tools
// check for iOS7 | |
if (OS_IOS && parseInt(Titanium.Platform.version.split(".")[0], 10) >= 7) { | |
} |
image_view.addEventListener("load",getImageSize); | |
function getImageSize(e) { | |
var blob = e.source.toBlob(); | |
if (blob === null) { | |
Ti.API.info("unable to get image size"); | |
} else { | |
Ti.API.info("id:" + e.source.id + " size=" + blob.width + "x" + blob.height); | |
} | |
} |
// media is the video url or the video file blob source | |
// cb - callback function to receive the thumb image and video duration in seconds | |
// size - dimension of one side of the required thumb (the other side will be calculated based on aspect ratio) | |
function getVideoThumb = function(media, cb, size) { | |
var player = Titanium.Media.createVideoPlayer({ | |
autoplay : false, | |
media : media, | |
scalingMode : Ti.Media.VIDEO_SCALING_MODE_FILL | |
}); | |