removed the event logger from core. Fixes #159

This commit is contained in:
scottjehl 2010-10-12 14:27:48 -04:00
parent 030d3a010e
commit 930430ab2e
2 changed files with 0 additions and 34 deletions

View file

@ -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>

View file

@ -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);