mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-05 21:24:45 +00:00
14 lines
No EOL
411 B
JavaScript
14 lines
No EOL
411 B
JavaScript
/*
|
|
* jQuery Mobile Framework : "fieldcontain" plugin - simple class additions to make form row separators
|
|
* Copyright (c) jQuery Project
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
* http://jquery.org/license
|
|
*/
|
|
(function($, undefined ) {
|
|
$.fn.fieldcontain = function(options){
|
|
var o = $.extend({
|
|
theme: 'c'
|
|
},options);
|
|
return $(this).addClass('ui-field-contain ui-body ui-br');
|
|
};
|
|
})(jQuery); |