Files
SymphonyElectron/demo/win.html

25 lines
495 B
HTML
Raw Normal View History

2017-04-18 09:02:25 -07:00
<html>
<head>
</head>
Test Window has been opened
2017-07-25 14:27:57 +05:30
<p>
<label for='tag'>tag:</label>
<input type='text' id='tag' value=''/>
</p>
<hr>
<p>Badge Count:<p>
<button id='inc-badge'>increment badge count</button>
<br>
<script>
var badgeCount = 0;
var incBadgeEl = document.getElementById('inc-badge');
incBadgeEl.addEventListener('click', function() {
badgeCount++;
ssf.setBadgeCount(badgeCount);
});
</script>
2017-04-18 09:02:25 -07:00
</html>