Revert "Export"
[framework/web/web-ui-fw.git] / demos / tizen-winsets / widgets / popupwindow / popupwindow.js
1 $("#popupwindow-demo").bind("pageshow", function() {
2       $('#popupwindow-demo-transition-' + $("#popupContent2").popupwindow("option", "transition"))
3         .attr("checked", "true")
4         .checkboxradio("refresh");
5
6         $(this).find('#progressbar').progressbar('start');
7 });
8
9 $('input[name=popupwindow-demo-transition-choice]').bind("change", function(e) {
10       $("#popupContent2").popupwindow("option", "transition", $(this).attr("id").split("-").pop());
11 });
12
13