File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/resize-columns/src/js Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 14
14
"commit" : " git-cz" ,
15
15
"e2e" : " grunt test:ci-e2e" ,
16
16
"init" : " validate-commit-msg" ,
17
- "lint" : " grunt newer:jshint" ,
17
+ "lint" : " grunt newer:jshint" ,
18
+ "postinstall" : " bower install" ,
18
19
"release" : " lerna publish from-package" ,
19
20
"start" : " grunt dev --fast" ,
20
21
"test" : " grunt test" ,
Original file line number Diff line number Diff line change 119
119
if ( position === 'left' ) {
120
120
// Get the column to the left of this one
121
121
var colIndex = renderContainer . visibleColumnCache . indexOf ( col ) ;
122
- if ( colIndex === 0 ) {
123
- //set visibleColumnCache to 0 if colIndex is 0
122
+ if ( colIndex === 0 ) {
124
123
return renderContainer . visibleColumnCache [ 0 ] ;
125
124
}
126
125
return renderContainer . visibleColumnCache [ colIndex - 1 * rtlMultiplier ] ;
You can’t perform that action at this time.
0 commit comments