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
//On iOS the default is 'Search', On Android the default is empty | |
$.search.hintText = 'Deep Search' | |
if(OS_IOS){ | |
//Equals to tableRow.js new property | |
$.table.filterAttribute="filter"; | |
} | |
if(OS_ANDROID){ |
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 loading = require('functions').loading; | |
loading.setMessage('Autenticando...'); | |
loading.show(); | |
setTimeout(function(){ | |
loading.hide(); | |
},5000); | |
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 mkdfs = require("dk.mikkendigital.mkdfs"); // <- this module allows you to acess the SD Card root, without the AppDirectory | |
exports.showFileSystem = function(){ | |
//Window that will be pop-up with a tableview | |
var win = Ti.UI.createWindow({ | |
height:'100%', | |
width:'100%', | |
}); | |