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 slider container | |
const sliderContainer = document.createElement("div"); | |
sliderContainer.style.className = "slideshow-container"; | |
sliderContainer.style.maxWidth = "1000px"; | |
sliderContainer.style.position= "relative"; | |
sliderContainer.style.margin = "auto"; | |
document.body.appendChild(sliderContainer); | |
// imgage container |
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
Motiur Rahman built the Password Manager app as a Free app. This SERVICE is provided by Motiur Rahman at no cost and is intended for use as is. | |
This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. | |
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. | |
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Password Manager unless otherwise defined in this Privacy Policy. | |
Information Collection and Use |
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
Motiur Rahman built the Age Calculator Pro app as a Free app. This SERVICE is provided by Motiur Rahman at no cost and is intended for use as is. | |
This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. | |
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. | |
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Age Calculator Pro unless otherwise defined in this Privacy Policy. | |
Information Collection and Use |
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
var win = Ti.UI.createWindow({ | |
backgroundColor : 'white' | |
}); | |
// Create a Button. | |
var aButton = Ti.UI.createButton({ | |
title : 'Show', | |
height : "100", | |
width : "100", | |
color : "red" |
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
var win = Ti.UI.createWindow({ | |
title : "Focus Test", | |
backgroundColor : 'red', | |
layout : "vertical" | |
}); | |
// Create a TextField. | |
var aTextField = Ti.UI.createTextField({ | |
height : 40, |
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
var win = Ti.UI.createWindow({ | |
title : 'AlertDialog Window', | |
backgroundColor : 'white', | |
exitOnClose : true, | |
fullscreen : false | |
}); | |
// Create a Button. | |
var TestDialog = Ti.UI.createButton({ |
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
var win = Ti.UI.createWindow({ | |
backgroundColor : '#fff' | |
}); | |
win.open(); | |
//var args = $.args; | |
var analyticsId = 'SSO - Open'; | |
var webView; |
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
var win = Ti.UI.createWindow({ | |
backgroundColor : '#fff' | |
}); | |
function getImage() { | |
var url = "https://tineye.com/images/widgets/mona.jpg"; | |
var response = ''; | |
var client = Ti.Network.createHTTPClient({ | |
// function called when the response data is available | |
onload : function(e) { |
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
var win = Titanium.UI.createWindow({ | |
className : 'win' | |
}); | |
var Utils = { | |
/* modified version of https://gist.github.com/1243697 */ | |
_getExtension: function(fn) { | |
// CREDITS: http://stackoverflow.com/a/680982/292947 | |
var re = /(?:\.([^.]+))?$/; |
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
$.index.open(); |
NewerOlder