File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
java/io/jenkins/plugins/datatables Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2626 */
2727public class TableColumn {
2828 @ VisibleForTesting
29- static final String DETAILS_COLUMN_ICON_NAME = "plus- circle" ;
29+ static final String DETAILS_COLUMN_ICON_NAME = "circle-plus " ;
3030
3131 private final String headerLabel ;
3232 private final String definition ;
Original file line number Diff line number Diff line change @@ -113,12 +113,12 @@ jQuery3(document).ready(function () {
113113 if ( row . child . isShown ( ) ) {
114114 row . child . hide ( ) ;
115115 tr . removeClass ( 'shown' ) ;
116- toggleDetailsColumnIcon ( tr , "minus- circle" , "plus- circle" ) ;
116+ toggleDetailsColumnIcon ( tr , "circle-minus " , "circle-plus " ) ;
117117 }
118118 else {
119119 row . child ( $ ( this ) . data ( 'description' ) ) . show ( ) ;
120120 tr . addClass ( 'shown' ) ;
121- toggleDetailsColumnIcon ( tr , "plus- circle" , "minus- circle" ) ;
121+ toggleDetailsColumnIcon ( tr , "circle-plus " , "circle-minus " ) ;
122122 }
123123 } ) ;
124124
You can’t perform that action at this time.
0 commit comments