Skip to content
This repository was archived by the owner on Apr 1, 2022. It is now read-only.

Commit e034524

Browse files
author
Ken Berkeley
committed
@2.1.26
1 parent 578a38e commit e034524

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

dist/min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/en/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Under this premise, you could build the most suitable Datatable for your own sce
1212

1313
The dependencies of this project are shown as below:
1414

15-
* BootStrap 3.x + Font Awesome 4.x(must available globally)
15+
* BootStrap + Font Awesome(must available globally)
1616
* [lodash: groupBy / throttle / debounce](https://lodash.com/docs)
1717
* [replace-with](https://github.com/kenberkeley/replace-with)
1818

doc/zh-cn/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
本 Datatable 的依赖如下:
1111

12-
* BootStrap 3.x + Font Awesome 4.x(全局引入)
12+
* BootStrap + Font Awesome(全局引入)
1313
* [lodash: groupBy / throttle / debounce](https://lodash.com/docs)
1414
* [replace-with](https://github.com/kenberkeley/replace-with)
1515

examples/dist/client.56231834.js renamed to examples/dist/client.178e5090.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/dist/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212

1313
<script src="//unpkg.com/jquery@2.1.4/dist/jquery.min.js"></script>
1414
<script src="//unpkg.com/bootstrap@3.3.5/dist/js/bootstrap.min.js"></script>
15-
<script type="text/javascript" src="client.56231834.js"></script></body>
15+
<script type="text/javascript" src="client.178e5090.js"></script></body>
1616
</html>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue2-datatable-component",
33
"description": "The best Datatable for Vue.js 2.x which never sucks",
4-
"version": "2.1.25",
4+
"version": "2.1.26",
55
"main": "dist/min.js",
66
"module": "src/main.js",
77
"author": "Ken Berkeley <kenberkeley@foxmail.com>",

src/Pagination.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<i class="fa fa-arrow-left"></i>
66
</a>
77
</li>
8-
<li v-for="i in dspBtns" class="page-item" :class="{ 'active': i === curPage }">
8+
<li v-for="i in dspBtns" :class="['page-item', { 'active': i === curPage }]">
99
<a v-if="i" href="#" class="page-link" @click.prevent="handleClick(i)">
1010
{{ i }}
1111
</a>

0 commit comments

Comments
 (0)