diff options
author | mariusbaumann <baumann.marius@gmail.com> | 2015-03-11 02:29:02 +0100 |
---|---|---|
committer | mariusbaumann <baumann.marius@gmail.com> | 2015-03-11 02:29:02 +0100 |
commit | 509ca6072290b96a772cd0515bd9e1afcbe45937 (patch) | |
tree | dd78a3752fcdfa89b93ca7cfa1387159bdf27eeb | |
parent | delete tmp folder (diff) | |
download | pyload-509ca6072290b96a772cd0515bd9e1afcbe45937.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)
-rw-r--r-- | module/web/templates/default/queue.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/web/templates/default/queue.html b/module/web/templates/default/queue.html index 29e1a2927..62d0be777 100644 --- a/module/web/templates/default/queue.html +++ b/module/web/templates/default/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="/media/default/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="/media/default/img/pencil.png" /></span> - <span class="glyphicon glyphicon-transfer package_drag" title="{{_("Move Package")}}" style="margin-left: -10px; cursor: pointer" height="12px" src="/media/default/img/package_go.png" /></span> + <span class="glyphicon glyphicon-transfer" title="{{_("Move Package")}}" style="margin-left: -10px; cursor: pointer" height="12px" src="/media/default/img/package_go.png" /></span> </span> </div> {% set progress = (package.linksdone * 100) / package.linkstotal %} |