diff options
author | mariusbaumann <baumann.marius@gmail.com> | 2015-03-11 02:29:02 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-26 22:34:25 +0100 |
commit | 15a72c2e40cf8b0c8ae0fcde7b1d6d0a38fb03ae (patch) | |
tree | 2dc44e1b4c06059db2da3bee479839a308943b4c | |
parent | Revert ce103ce1e60661f7bcdf6a033335134de61d48b1 (diff) | |
download | pyload-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.html | 4 |
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> <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(){ <span class="glyphicon glyphicon-pencil" title="{{_("Edit Package")}}" style="margin-left: -10px; cursor: pointer" height="12px" src="/img/pencil.png" /></span> - <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 %} |