c078677810d360a1ad398ceabde3b030efb87f74
[profile/ivi/cowhide.git] / examples / widget-gallery / javascripts / widget-gallery.js
1 $(function() {
2     $.cowhide.initThemeEngine({
3         path: '../..'
4     });
5     $('#night-mode-toggle').click(function() {
6         $.cowhide.toggleNightMode();
7     });
8
9     $('#driving-mode-toggle').click(function() {
10         $.cowhide.toggleDrivingMode();
11     });
12
13     $('form#font-size-test button').click(function() {
14         var $form = $(this).closest('form');
15         var $input = $form.find('input');
16         var val = $input.val();
17
18         $('.btn').css('font-size', val + 'px');
19     })
20 });