You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I updated table-dragger in an AngularJS application to v2.0.2 to address IE compatibility issues. After updating, click events are throwing an error that blocks future events. Dragging and dropping works, all events fired by table-dragger work as well.
Setup
component template
<table
id="report-table"
class="table report-table"
ng-class="{ loading: $ctrl.isFetchingRows }"
>
<thead>
<tr id="report-columns">
<th
ng-repeat="header in $ctrl.headers.displayed track by $index"
class="report-table-header"
>
<span ng-bind="header.viewFieldName"></span>
<i class="fa fa-bars report-table-drag"></i>
</th>
</tr>
</thead>
<tbody>
<tr
ng-repeat="row in $ctrl.rows.displayed track by $index"
id="report-table-row{{ $index }}"
>
<td
ng-repeat="cell in row track by $index"
class="report-table-cell"
ng-class="$ctrl.headers.displayed[$index].modelFieldName"
ng-attr-data-value="{{ cell.toLowerCase() }}"
>
<span ng-bind-html="cell"></span>
</td>
</tbody>
</table>
I updated table-dragger in an AngularJS application to v2.0.2 to address IE compatibility issues. After updating, click events are throwing an error that blocks future events. Dragging and dropping works, all events fired by table-dragger work as well.
Setup
component template
component controller
Clicking (but not dragging) one of the column headers produces this console error:
As far as I can ascertain this error is being thrown by the
firstDrag$
rxjs ObservableThe text was updated successfully, but these errors were encountered: