File tree 2 files changed +10
-4
lines changed
2 files changed +10
-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.6.1 " ) ]
19
- [ assembly: AssemblyFileVersion ( "1.6.1 " ) ]
18
+ [ assembly: AssemblyVersion ( "1.6.2 " ) ]
19
+ [ assembly: AssemblyFileVersion ( "1.6.2 " ) ]
20
20
//[assembly: AssemblyInformationalVersion("1.4.5-editlyalpha2")]
Original file line number Diff line number Diff line change 108
108
109
109
$ ( "html" ) . on ( "click" , $ . proxy ( function ( event )
110
110
{
111
- if ( $ ( event . target ) . parents ( '.popover.in' ) . length == 0 && $ ( event . target ) . parents ( ".filter-trigger" ) . length == 0 && ! $ ( event . target ) . hasClass ( "filter-trigger" ) )
111
+ if ( this . options . filterMode == "Inline" && $ ( event . target ) . parents ( '.popover.in' ) . length == 0 && $ ( event . target ) . parents ( ".filter-trigger" ) . length == 0 && ! $ ( event . target ) . hasClass ( "filter-trigger" ) )
112
112
{
113
- $ ( ".griddly-filters-inline .filter-trigger" ) . popover ( "hide" ) ;
113
+ $ ( ".griddly-filters-inline .filter-trigger" ) . each ( function ( )
114
+ {
115
+ var filter = $ ( this ) ;
116
+
117
+ if ( filter . data ( 'bs.popover' ) . tip ( ) . hasClass ( 'in' ) )
118
+ filter . popover ( "hide" ) ;
119
+ } ) ;
114
120
}
115
121
} , this ) ) ;
116
122
You can’t perform that action at this time.
0 commit comments