Skip to content

Commit

Permalink
fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Silivestru committed Jul 11, 2012
1 parent d54bfe7 commit dc80540
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/ripple/ui/plugins/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ var tooltip = require('ripple/ui/plugins/tooltip'),
bus = require('ripple/bus');

function handleBuild() {
var node = $(this),
action = node.attr('id').split("-")[2];

bus.ajax(
"GET",
"http://127.0.0.1:9910/ripple/about",
Expand All @@ -40,6 +37,9 @@ function handleBuild() {
}

function doBuild() {
var node = $(this),
action = node.attr('id').split("-")[2];

if (node.hasClass("not-ready")) {
return;
}
Expand Down

0 comments on commit dc80540

Please sign in to comment.