Merge pull request #1958 from rwldrn/jquery.mobile.fieldContain.js

jQuery core style guide conformance: jquery.mobile.fieldContain.js
This commit is contained in:
Todd Parker 2011-06-29 06:56:09 -07:00
commit afe76dc340

View file

@ -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);
})( jQuery );