8177773004c01c10691c2aeac13e37014e642b1c
[platform/framework/web/web-ui-fw.git] / src / themes / tizen / tizen-white / theme.js
1 (function( $, undefined ) {
2 //$.mobile.page.prototype.options.backBtnTheme  = "s";
3
4 // Clear default theme for child elements
5 $( function ( o ) {
6         o.headerTheme = "s";
7         o.footerTheme = "s";
8 } ( $.mobile.page.prototype.options ) );
9
10 // clear listview
11 ( function ( o ) {
12         o.theme = "s";
13         o.countTheme = "s";
14         o.headerTheme = "s";
15         o.dividerTheme = "s";
16         o.splitTheme = "s";
17 } ( $.mobile.listview.prototype.options ) );
18
19 // Collapsible
20 ( function ( o ) {
21         o.heading = o.heading + ',li';          // Add listitem as a heading
22         o.inset = false;
23         o.iconPos = "right";    // Move iconPos to right position
24         o.collapsedIcon = "arrow-u";
25         o.expandedIcon = "arrow-d";
26 } ( $.mobile.collapsible.prototype.options ) );
27
28 //clear button theme
29 $.mobile.button.prototype.options.theme = "s";
30 $.fn.buttonMarkup.defaults.theme = "s";
31
32 // Default theme swatch
33 $.mobile.page.prototype.options.theme = "s";
34
35 // Original scale of the theme
36 $.tizen.frameworkData.defaultViewportWidth = 360;       // Fit to device-width
37 $.tizen.frameworkData.defaultFontSize = 22;
38
39 })(jQuery);