blob: eb0a0cc5a30c8731d3c9eb7cb2fd4a4033ec2b26 (
plain)
1
2
3
4
5
6
7
8
9
|
$( document ).bind("pagecreate", function () {
$('#back').bind( "vclick", function () {
history.back();
});
});
$( "#no-user-select" ).live( "pageshow", function () {
$.mobile.tizen.disableSelection( this );
});
|