summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar mariusbaumann <baumann.marius@gmail.com> 2015-03-11 02:29:02 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 22:34:25 +0100
commit15a72c2e40cf8b0c8ae0fcde7b1d6d0a38fb03ae (patch)
tree2dc44e1b4c06059db2da3bee479839a308943b4c
parentRevert ce103ce1e60661f7bcdf6a033335134de61d48b1 (diff)
downloadpyload-15a72c2e40cf8b0c8ae0fcde7b1d6d0a38fb03ae.tar.xz
Drag and drop fix
Now the drag and drop feature in queue is matched to the title of the package. The move button now works again as expected (to move betwen collector and queue) Conflicts: pyload/webui/themes/Next/tml/queue.html
-rw-r--r--pyload/webui/themes/Next/tml/queue.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/webui/themes/Next/tml/queue.html b/pyload/webui/themes/Next/tml/queue.html
index 41feb2739..6f50d740c 100644
--- a/pyload/webui/themes/Next/tml/queue.html
+++ b/pyload/webui/themes/Next/tml/queue.html
@@ -38,7 +38,7 @@ document.addEvent("domready", function(){
<div class="packagename" style="float:left; width: 50%; cursor: pointer">
<span class="glyphicon glyphicon-folder-close"></span>
- <span class="name" style="font-size: 16px; font-weight: bold;">{{package.name }}</span>
+ <span class="name" style="font-size: 16px; font-weight: bold;"><em class="package_drag" style="font-style:normal">{{package.name }}</em></span>
&nbsp;&nbsp;
<span class="buttons" style="opacity:0">
<span class="glyphicon glyphicon-trash" title="{{_("Delete Package")}}" style="cursor: pointer" width="12px" height="12px" src="/img/delete.png" /></span>
@@ -47,7 +47,7 @@ document.addEvent("domready", function(){
&nbsp;&nbsp;
<span class="glyphicon glyphicon-pencil" title="{{_("Edit Package")}}" style="margin-left: -10px; cursor: pointer" height="12px" src="/img/pencil.png" /></span>
&nbsp;&nbsp;
- <span class="glyphicon glyphicon-transfer package_drag" title="{{_("Move Package")}}" style="margin-left: -10px; cursor: pointer" height="12px" src="/img/package_go.png" /></span>
+ <span class="glyphicon glyphicon-transfer" title="{{_("Move Package")}}" style="margin-left: -10px; cursor: pointer" height="12px" src="/img/package_go.png" /></span>
</span>
</div>
{% set progress = (package.linksdone * 100) / package.linkstotal %}