fixed overlapped content issue when display search results
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<summary>Aria2 and youtube-dl web gui for nextcloud</summary>
|
||||
<description>built-in torrent search;Start and stop Aria2 process, manage Aria2 from the web;
|
||||
Download videos from youtube, twitter and other sites;</description>
|
||||
<version>0.4.0</version>
|
||||
<version>0.4.1</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="freefallbenson@gmail.com" homepage="https://github.com/shiningw">jiaxinhuang</author>
|
||||
<namespace>NCDownloader</namespace>
|
||||
|
||||
@@ -102,7 +102,7 @@ export default {
|
||||
if (files) {
|
||||
let formWrapper = element.closest("form");
|
||||
let url = formWrapper.getAttribute("action");
|
||||
Http.getInstance(url)
|
||||
return Http.getInstance(url)
|
||||
.setHandler(function (data) {
|
||||
successCallback(data, element);
|
||||
})
|
||||
@@ -121,13 +121,11 @@ export default {
|
||||
|
||||
<style lang="scss">
|
||||
@import "css/dl_variables.scss";
|
||||
$box-height: 110px;
|
||||
|
||||
#app-content-wrapper {
|
||||
.ncdownloader-form-wrapper {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-height: $box-height;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
@@ -23,7 +23,6 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
handler(event) {
|
||||
console.log(this.enableLoading);
|
||||
if (this.enableLoading) this.loading = 1;
|
||||
this.$emit("clicked", event, this);
|
||||
},
|
||||
|
||||
@@ -86,7 +86,6 @@ export default {
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
console.log(this.uris);
|
||||
},
|
||||
name: "mainForm",
|
||||
props: {
|
||||
|
||||
Reference in New Issue
Block a user