From c9c1f30025d8d4022a611a55e401f0b8d6c06563 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 13 Sep 2010 18:22:51 -0400 Subject: [PATCH] Updated header comment. --- js/jQuery.mobile.js | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/js/jQuery.mobile.js b/js/jQuery.mobile.js index 2731834c..b02a87b8 100644 --- a/js/jQuery.mobile.js +++ b/js/jQuery.mobile.js @@ -1,13 +1,12 @@ -/* -* jQuery Mobile Framework -* Copyright (c) jQuery Project -* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. -* Note: Code is in draft form and is subject to change!! - - This file adds properties to $.support, -*/ - -(function($,window,undefined){ - +/*! + * jQuery Mobile + * http://jquerymobile.com/ + * + * Copyright 2010, jQuery Project + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + */ +(function( $, window, undefined ) { var $window = $(window), $html = $('html'), $head = $('head'), @@ -477,8 +476,5 @@ $('body').bind('scrollstart scrollstop swipe swipeleft swiperight tap taphold turn',function(e){ $('#eventlogger').prepend('
Event fired: '+ e.type +'
'); }); - - - }); -})(jQuery, this); \ No newline at end of file +})( jQuery, this );