Skip to content
This repository has been archived by the owner on Sep 25, 2018. It is now read-only.

Commit

Permalink
Fixed issue #5 where top-level scripts would be ignored in IE.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeard4 committed Dec 21, 2012
1 parent aab00b4 commit f0549be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/util/annotate-scxml-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ var transform = exports.transform = function(scxmlDoc) {
};

function genRootScripts(root) {
return pm.platform.dom.getChildren(root).filter(function(c){return pm.platform.dom.localName(c) === "script";}).map(function(c){return c.textContent;});
return pm.platform.dom.getChildren(root).filter(function(c){return pm.platform.dom.localName(c) === "script";}).map(function(c){return pm.platform.dom.textContent(c);});
}

function genEventsEnum(uniqueEvents) {
Expand Down

0 comments on commit f0549be

Please sign in to comment.