summaryrefslogtreecommitdiffstats
path: root/apps/uscxml-debugger.html
diff options
context:
space:
mode:
Diffstat (limited to 'apps/uscxml-debugger.html')
-rw-r--r--apps/uscxml-debugger.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/uscxml-debugger.html b/apps/uscxml-debugger.html
index 3aece02..fa49554 100644
--- a/apps/uscxml-debugger.html
+++ b/apps/uscxml-debugger.html
@@ -1099,11 +1099,14 @@
// we found a document, enable "recent" button
$(this.recentDocumentsNode).prev().attr('disabled', false);
+ console.log(recentURL);
+
var recentDocumentItem = $('\
<li><a href="#"><!-- i class="glyphicon glyphicon-floppy-open" style="margin-right: 0.7em" / -->' + key + '<span class="recent-document-features"></span></a></li>\
');
var recentDocumentFeatures = $(recentDocumentItem).find("span.recent-document-features");
- $(recentDocumentItem).children("a").click(function() {
+ $(recentDocumentItem).children("a").unbind('click').click(function() {
+ console.log("recentURL: " + recentURL);
$(debug.loadFromURLModalNode).find("input#loadFromURLModalInput").val(recentURL);
$(debug.recentDocumentsNode).dropdown("toggle");
return false;