modify wrong changelog date
[platform/framework/web/web-ui-fw.git] / demos / tizen-winsets / widgets / noti.js
1 $( "div.noti-demo" ).on("pagecreate", function () {
2         $('#noti-demo').on('vmouseup', function ( e ) {
3                 $('#notification').notification('open');
4         });
5
6         $('#noti-icon1').on('vclick', function ( e ) {
7                 $('#notification').notification('icon', './test/icon02.png');
8         });
9
10         $('#noti-icon2').on('vclick', function ( e ) {
11                 $('#notification').notification('icon', './test/icon01.png');
12         });
13
14 });