File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 15
15
//
16
16
// You can specify all the values or you can default the Revision and Build Numbers
17
17
// by using the '*' as shown below:
18
- [ assembly: AssemblyVersion ( "1.0.32 .0" ) ]
19
- [ assembly: AssemblyFileVersion ( "1.0.32 .0" ) ]
18
+ [ assembly: AssemblyVersion ( "1.0.33 .0" ) ]
19
+ [ assembly: AssemblyFileVersion ( "1.0.33 .0" ) ]
Original file line number Diff line number Diff line change 611
611
$ ( el ) . popover ( {
612
612
html : true ,
613
613
placement : "bottom" ,
614
- container : "body" ,
615
- template : '<div class="popover griddly-filter-popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>' ,
614
+ // TODO: figure out how to have griddly in modal and still use body container. as it is, something about the modal
615
+ // blocks inputs in popovers from getting focus. so as a fallback I put it back in the bouding container,
616
+ // which will work but means it will get cut off if griddly is scrollable
617
+ container : this . $element . parents ( ".modal" ) . length ? null : "body" ,
618
+ template : '<div class="popover griddly-filter-popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>' ,
616
619
content : function ( )
617
620
{
618
621
return content ;
You can’t perform that action at this time.
0 commit comments