Files
phonegap-plugins/Android/LocalNotification/example_index.html
2012-02-08 13:31:44 +01:00

30 lines
798 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>PhoneGap</title>
<script type="text/javascript" charset="utf-8" src="phonegap-1.4.1.js"></script>
<script type="text/javascript" charset="utf-8" src="LocalNotification.js"></script>
<script type="text/javascript">
document.addEventListener("deviceready", appReady, false);
function appReady() {
console.log("Device ready");
if (typeof plugins !== "undefined") {
plugins.localNotification
.add({
date : new Date(),
message : "Phonegap - Local Notification\r\nSubtitle comes after linebreak",
ticker : "This is a sample ticker text",
repeatDaily : false,
id : 4
});
}
}
document.addEventListener("deviceready", appReady, false);
</script>
</head>
<body>
<h1>Hello Android Notifications!</h1>
</body>
</html>