mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-09 15:14:44 +00:00
removed the event logger from core. Fixes #159
This commit is contained in:
parent
030d3a010e
commit
930430ab2e
2 changed files with 0 additions and 34 deletions
29
_events.html
29
_events.html
|
|
@ -1,29 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>jQuery Mobile Framework - Event tests</title>
|
||||
<link rel="stylesheet" media="only all" href="css/all" />
|
||||
<script type="text/javascript" src="js/all"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
|
||||
<div data-role="page" >
|
||||
<div data-role="header">
|
||||
<h1>Event tests</h1>
|
||||
</div>
|
||||
<div data-role="content" class=" ui-body ui-body-c" style="height:2000px;">
|
||||
<p>The following events will log out below when they fire: scrollstart scrollstop swipe swipeleft swiperight tap taphold turn.</p>
|
||||
<div id="eventlogger"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -356,11 +356,6 @@
|
|||
|
||||
//update orientation
|
||||
$html.addClass( jQuery.event.special.orientationchange.orientation( $window ) );
|
||||
|
||||
//some debug stuff for the events pages
|
||||
jQuery('body').bind('scrollstart scrollstop swipe swipeleft swiperight tap taphold turn',function(e){
|
||||
jQuery('#eventlogger').prepend('<div>Event fired: '+ e.type +'</div>');
|
||||
});
|
||||
});
|
||||
|
||||
$window.load(hideBrowserChrome);
|
||||
|
|
|
|||
Loading…
Reference in a new issue