From 76b173dab264848c1da778615775d9ebbc1288ff Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Tue, 28 Jun 2011 19:48:47 -0400 Subject: [PATCH 1/2] jQuery core style guide conformance: jquery.mobile.fieldContain.js --- js/jquery.mobile.fieldContain.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/js/jquery.mobile.fieldContain.js b/js/jquery.mobile.fieldContain.js index dec7e662..51afbd02 100644 --- a/js/jquery.mobile.fieldContain.js +++ b/js/jquery.mobile.fieldContain.js @@ -4,8 +4,11 @@ * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license */ -(function($, undefined ) { -$.fn.fieldcontain = function(options){ - return this.addClass('ui-field-contain ui-body ui-br'); + +(function( $, undefined ) { + +$.fn.fieldcontain = function( options ) { + return this.addClass( "ui-field-contain ui-body ui-br" ); }; + })(jQuery); \ No newline at end of file From 3c57cb8778ad70feb38c8bbbc9646c49bc5b4e42 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Tue, 28 Jun 2011 23:46:23 -0400 Subject: [PATCH 2/2] jQuery core style guide conformance: jquery.mobile.fieldContain.js --- js/jquery.mobile.fieldContain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.mobile.fieldContain.js b/js/jquery.mobile.fieldContain.js index 51afbd02..3593f427 100644 --- a/js/jquery.mobile.fieldContain.js +++ b/js/jquery.mobile.fieldContain.js @@ -11,4 +11,4 @@ $.fn.fieldcontain = function( options ) { return this.addClass( "ui-field-contain ui-body ui-br" ); }; -})(jQuery); \ No newline at end of file +})( jQuery ); \ No newline at end of file