blob: 6481de0d21f57ff0b586a6e22742d88d5555b97f [file] [log] [blame]
var startTime;
var checkTime;
//Initialize function
var init = function () {
// TODO:: Do your initialization job
console.log("init() called");
// add eventListener for tizenhwkey
document.addEventListener('tizenhwkey', function(e) {
if(e.keyName == "back")
tizen.application.getCurrentApplication().exit();
});
};
// window.onload can work without <body onload="">
window.onload = init;
function startTime() {
var today = new Date();
var h = today.getHours();
var m = today.getMinutes();
var s = today.getSeconds();
m = checkTime(m);
s = checkTime(s);
document.getElementById('divbutton1').innerHTML="Current time: " + h + ":" + m + ":" + s;
t = setTimeout(startTime, 250);
}
function checkTime(i) {
if (i < 10) {
i="0" + i;
}
return i;
}