0

SplitView works well with jQuery Mobile. But apparently adapted to iPad.
Actually, I'm working on a 7 inch tab and I would like the splitview to display starting about 300px.
I tried to change the min-width in the "splitview.css" file but it does not seem to work.
Can someone help me with this?

Jeelig
  • 102
  • 2
  • 15

1 Answers1

1

search in teh splitview.js for

$menu.removeClass('panel-popover')
                        .addClass('ui-panel-left')
                        .css({'width':'25%', 'min-width':'250px', 'display':''});

u can change the width and min-width there. hope that helps. :)

ghostCoder
  • 1
  • 9
  • 49
  • 72