Skip to content

Commit

Permalink
[doc] updated broken link in ReadMe
Browse files Browse the repository at this point in the history
  • Loading branch information
Marak committed Sep 2, 2010
1 parent 5101957 commit 4b97b33
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -36,7 +36,7 @@ prenup allows you to meaningfully engage your clients and convert their domain k


### using prenup online ### using prenup online


visit [http://prenup.nodejitsu.com][4] visit [http://prenup.nodejitsu.com][5]


## Vows ## Vows


Expand Down
7 changes: 5 additions & 2 deletions client/js/app.js
Expand Up @@ -209,13 +209,16 @@ $(function() {
autoHeight: false, autoHeight: false,
active: false active: false
}).find("input, h3").click(function(e){ }).find("input, h3").click(function(e){


if($(e.originalTarget).parent().hasClass('delete-scenario')){ if($(e.originalTarget).parent().hasClass('delete-scenario')){
e.stopPropagation(); //e.stopPropagation();
e.preventDefault(); //e.preventDefault();


$(document).trigger('scenario.delete', $(e.originalTarget).closest('.scenario')); $(document).trigger('scenario.delete', $(e.originalTarget).closest('.scenario'));
return false; return false;
} }

//e.stopPropagation(); //e.stopPropagation();
//e.preventDefault(); //e.preventDefault();
}); });
Expand Down

0 comments on commit 4b97b33

Please sign in to comment.