diff --git a/client/components/Search/PageScroller/PageScroller.vue b/client/components/Search/PageScroller/PageScroller.vue index 4c6e56f..9b82ff4 100644 --- a/client/components/Search/PageScroller/PageScroller.vue +++ b/client/components/Search/PageScroller/PageScroller.vue @@ -6,7 +6,7 @@
diff --git a/client/components/Search/Search.vue b/client/components/Search/Search.vue index ef90412..c7fe9a9 100644 --- a/client/components/Search/Search.vue +++ b/client/components/Search/Search.vue @@ -318,10 +318,6 @@ class Search { created() { this.commit = this.$store.commit; - /*this.refresh = _.debounce(() => { - this.refreshDebounced(); - }, 1000);*/ - this.loadSettings(); } diff --git a/client/components/share/NumInput.vue b/client/components/share/NumInput.vue index bff685f..c89a9e7 100644 --- a/client/components/share/NumInput.vue +++ b/client/components/share/NumInput.vue @@ -9,6 +9,16 @@ > @@ -74,6 +95,7 @@ class NumInput { disable: Boolean, minusIcon: {type: String, default: 'la la-minus-circle'}, plusIcon: {type: String, default: 'la la-plus-circle'}, + mmButtons: Boolean, }; filteredValue = 0; @@ -188,6 +210,14 @@ class NumInput { this.inTouch = false; this.onMouseUp(); } + + toMin() { + this.filteredValue = this.min; + } + + toMax() { + this.filteredValue = this.max; + } } export default vueComponent(NumInput); @@ -202,7 +232,9 @@ export default vueComponent(NumInput); .button { font-size: 130%; - border-radius: 20px; + border-radius: 15px; + width: 30px; + height: 30px; color: #bbb; cursor: pointer; }