Browse Source

- fixed pause/resume (broken by multiple selection commit)

adaptive-webui-19844
Christophe Dumez 16 years ago
parent
commit
ac6eb8c6bc
  1. 4
      src/webui/scripts/mocha-events.js

4
src/webui/scripts/mocha-events.js

@ -68,8 +68,8 @@ function attachMochaLinkEvents(){
new Event(e).stop(); new Event(e).stop();
var h = myTable.selectedIds(); var h = myTable.selectedIds();
if(h.length){ if(h.length){
h.each(function(item, index){ h.each(function(hash, index){
new Request({url: '/command/'+item, method: 'post', data: {hash: item}}).send(); new Request({url: '/command/'+item, method: 'post', data: {hash: hash}}).send();
}); });
} }
}); });

Loading…
Cancel
Save