Skip to content

Commit

Permalink
Fix JS: add back missing quote.
Browse files Browse the repository at this point in the history
  • Loading branch information
myronmarston committed May 4, 2012
1 parent e63917b commit 81b6416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/qless/server/views/layout.erb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
* flash a message to that effect on the page */
var move = function(jid, queue, cb) {
_ajax({
url: '<%= u "/move" %>,
url: '<%= u "/move" %>',
data: {id:jid, queue:queue},
success: function() { flash('Moved ' + jid + ' to ' + queue, 'success', 1500); cb(jid, queue); },
erorr: function() { flash('Failed to move ' + jid + ' to ' + queue); }
Expand Down

0 comments on commit 81b6416

Please sign in to comment.