mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-21 21:01:51 +00:00
Merge pull request #1958 from rwldrn/jquery.mobile.fieldContain.js
jQuery core style guide conformance: jquery.mobile.fieldContain.js
This commit is contained in:
commit
afe76dc340
1 changed files with 7 additions and 4 deletions
|
|
@ -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 );
|
||||
Loading…
Reference in a new issue