diff --git a/app/templates/index.html b/app/templates/index.html
index b53123e..23d3601 100755
--- a/app/templates/index.html
+++ b/app/templates/index.html
@@ -433,7 +433,8 @@
Saved!
});
// Analyze playlist
- $('#analyze-playlist-btn').click(function() {
+ $('#analyze-playlist-btn').click(function(e) {
+ e.stopPropagation(); // Prevent triggering collapsed handler
if (!selectedPlaylistId) return;
$(this).prop('disabled', true).text('Analyzing...');
@@ -486,7 +487,9 @@ Saved!
});
// Continue to generator
- $('#continue-to-generator').click(function() {
+ $('#continue-to-generator').click(function(e) {
+ e.stopPropagation(); // Prevent triggering collapsed handler
+
// Collapse step 2 and set summary
$('#mood-profile').addClass('collapsed');
var topTags = [];