b7d3e8106ca84bb8ad15345b51c2cd12336939ac
[platform/framework/web/web-ui-fw.git] / demos / tizen-winsets / widgets / popupwindow / popupwindow.js
1 $( document ).one( "pagecreate", "#popupwindow-demo", function () {
2         $('input[name="popupwindow-demo-transition-choice"]').on("change", function ( e ) {
3                 $("#popupContent2").popupwindow("option", "transition", $(this).attr("id").split("-").pop());
4         });
5
6         $("#btn_textbox_popup_cancel").on("vclick", function ( ev ) {
7                 $("#textbox_popup").find("input").val("");
8         });
9 });