Showing
3 changed files
with
4 additions
and
4 deletions
@@ -37,7 +37,7 @@ function Select(items) { | @@ -37,7 +37,7 @@ function Select(items) { | ||
37 | elem.removeClass('slide-in'); | 37 | elem.removeClass('slide-in'); |
38 | overlay.hide(); | 38 | overlay.hide(); |
39 | elem.hide(); | 39 | elem.hide(); |
40 | - } | 40 | + }; |
41 | 41 | ||
42 | const show = function(cb) { | 42 | const show = function(cb) { |
43 | if (elem.parent().length === 0) { | 43 | if (elem.parent().length === 0) { |
@@ -62,7 +62,7 @@ function Select(items) { | @@ -62,7 +62,7 @@ function Select(items) { | ||
62 | setTimeout(() => { | 62 | setTimeout(() => { |
63 | elem.addClass('slide-in'); | 63 | elem.addClass('slide-in'); |
64 | }, 200); | 64 | }, 200); |
65 | - } | 65 | + }; |
66 | 66 | ||
67 | $(del).click(function() { | 67 | $(del).click(function() { |
68 | hide(); | 68 | hide(); |
@@ -4,7 +4,7 @@ const favBrandList = require('home/fav-brand-list.vue'); | @@ -4,7 +4,7 @@ const favBrandList = require('home/fav-brand-list.vue'); | ||
4 | const VueTouch = require('vue-touch'); | 4 | const VueTouch = require('vue-touch'); |
5 | require('common/vue-filter'); | 5 | require('common/vue-filter'); |
6 | 6 | ||
7 | -Vue.use(VueTouch) | 7 | +Vue.use(VueTouch); |
8 | Vue.use(infiniteScroll); | 8 | Vue.use(infiniteScroll); |
9 | 9 | ||
10 | new Vue({ | 10 | new Vue({ |
@@ -4,7 +4,7 @@ const favProductList = require('home/fav-product-list.vue'); | @@ -4,7 +4,7 @@ const favProductList = require('home/fav-product-list.vue'); | ||
4 | const VueTouch = require('vue-touch'); | 4 | const VueTouch = require('vue-touch'); |
5 | require('common/vue-filter'); | 5 | require('common/vue-filter'); |
6 | 6 | ||
7 | -Vue.use(VueTouch) | 7 | +Vue.use(VueTouch); |
8 | Vue.use(infiniteScroll); | 8 | Vue.use(infiniteScroll); |
9 | 9 | ||
10 | new Vue({ | 10 | new Vue({ |
-
Please register or login to post a comment