Skip to content

Commit

Permalink
fix: #247 DataTable - mouse wheel scroll not working on Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed Dec 13, 2016
1 parent b8b8487 commit dffef37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vue-components/data-table/DataTable.vue
Expand Up @@ -53,7 +53,7 @@
</table>
</template>

<div v-else class="q-data-table-container" @mousewheel="mouseWheel" @dommousescroll="mouseWheel">
<div v-else class="q-data-table-container" @mousewheel="mouseWheel" @DOMMouseScroll="mouseWheel">
<div class="q-data-table-head" ref="head" :style="{marginRight: scroll.vert}">
<table-content head :cols="cols" :sorting="sorting" :scroll="scroll" :selection="config.selection" @sort="setSortField"></table-content>
</div>
Expand Down

0 comments on commit dffef37

Please sign in to comment.