From 4b97b3325fb95bfb8bbe757db109ece4cd04a0ab Mon Sep 17 00:00:00 2001 From: Marak Squires Date: Thu, 2 Sep 2010 03:31:22 -0400 Subject: [PATCH] [doc] updated broken link in ReadMe --- README.md | 2 +- client/js/app.js | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 310827a..ffd3938 100755 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ prenup allows you to meaningfully engage your clients and convert their domain k ### using prenup online -visit [http://prenup.nodejitsu.com][4] +visit [http://prenup.nodejitsu.com][5] ## Vows diff --git a/client/js/app.js b/client/js/app.js index 068426a..608d730 100755 --- a/client/js/app.js +++ b/client/js/app.js @@ -209,13 +209,16 @@ $(function() { autoHeight: false, active: false }).find("input, h3").click(function(e){ + + if($(e.originalTarget).parent().hasClass('delete-scenario')){ - e.stopPropagation(); - e.preventDefault(); + //e.stopPropagation(); + //e.preventDefault(); $(document).trigger('scenario.delete', $(e.originalTarget).closest('.scenario')); return false; } + //e.stopPropagation(); //e.preventDefault(); });