@@ -112,9 +112,9 @@ export default {
112112 visibleRowsData .push (this .tabulator .rowManager .displayRows [0 ][i].data );
113113 }
114114 }
115- return {
116- firstRowIdx: firstVisibleRowIndex,
117- lastRowIdx: lastVisibleRowIndex,
115+ return {
116+ firstRowIdx: firstVisibleRowIndex,
117+ lastRowIdx: lastVisibleRowIndex,
118118 rowsData: visibleRowsData }
119119 },
120120 hover : function (variant , hovered ) {
@@ -141,7 +141,7 @@ export default {
141141 let visVars = this .getVisibleVariants ();
142142
143143 // make sure that row is hovered after re-rendering on mobile touch screen
144- if (this .hoveredRowPosition != null ) {
144+ if (this .hoveredRowPosition != null ) {
145145 var row = this .tabulator .getRowFromPosition (this .hoveredRowPosition );
146146 row .getElement ().classList .add (' row-hovered' );
147147 }
@@ -150,7 +150,7 @@ export default {
150150 // formerly enterMouseEnter callback
151151 tblRowMouseEnter : function (e , row ) {
152152 // row was hovered from before and mouseleave was never called
153- if ((this .hoveredRowPosition != null ) && (this .hoveredRowPosition != row .getPosition ())) {
153+ if ((this .hoveredRowPosition != null ) && (this .hoveredRowPosition != row .getPosition ())) {
154154 var hoveredRow = this .tabulator .getRowFromPosition (this .hoveredRowPosition );
155155 hoveredRow .getElement ().classList .remove (' row-hovered' );
156156 this .$emit (" hover" , hoveredRow .getPosition (), hoveredRow .getData (), false );
@@ -170,11 +170,11 @@ export default {
170170 formatCaddValue : function (cell ) {
171171 return (cell .getValue () === null ? " " : cell .getValue ().toFixed (2 ))
172172 },
173- // function to override to customize column defs.
173+ // function to override to customize column defs.
174174 tblColumnDefs : function (){
175175 return this .baseColumnDefs ()
176176 },
177- // common column defs.
177+ // common column defs.
178178 baseColumnDefs : function (){
179179 return ([
180180 {
0 commit comments