Index: lams_tool_mindmap/web/includes/javascript/authoring.js
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_mindmap/web/includes/javascript/authoring.js,v
diff -u -r1.2 -r1.3
--- lams_tool_mindmap/web/includes/javascript/authoring.js 17 Apr 2009 07:24:38 -0000 1.2
+++ lams_tool_mindmap/web/includes/javascript/authoring.js 22 Apr 2009 04:56:08 -0000 1.3
@@ -15,7 +15,7 @@
var mindmapContent = document.getElementById("mindmapContent");
if (tag.value == "" || tag.value == 1) {
- mindmapContent.value = getFlashMovie('flashContent').getMindmap();
+ mindmapContent.value = document['flashContent'].getMindmap();
}
tag.value = tabId;
Index: lams_tool_mindmap/web/pages/authoring/authoring.jsp
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_mindmap/web/pages/authoring/authoring.jsp,v
diff -u -r1.4 -r1.5
--- lams_tool_mindmap/web/pages/authoring/authoring.jsp 21 Apr 2009 07:19:36 -0000 1.4
+++ lams_tool_mindmap/web/pages/authoring/authoring.jsp 22 Apr 2009 04:56:26 -0000 1.5
@@ -10,11 +10,6 @@
//
-
+
button.finish
Index: lams_tool_mindmap/web/pages/monitoring/mindmapDisplay.jsp
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_mindmap/web/pages/monitoring/mindmapDisplay.jsp,v
diff -u -r1.4 -r1.5
--- lams_tool_mindmap/web/pages/monitoring/mindmapDisplay.jsp 21 Apr 2009 07:19:36 -0000 1.4
+++ lams_tool_mindmap/web/pages/monitoring/mindmapDisplay.jsp 22 Apr 2009 04:56:42 -0000 1.5
@@ -9,11 +9,6 @@
flashvars = { xml: "${mindmapContentPath}", user: "${currentMindmapUser}", dictionary: "${localizationPath}" }
embedFlashObject(700, 525);
-
- function getFlashMovie(movieName) {
- var isIE = navigator.appName.indexOf("Microsoft") != -1;
- return (isIE) ? window[movieName] : document[movieName];
- }
$(window).resize(makeNice);
@@ -38,7 +33,7 @@
{
var mindmapContent = document.getElementById("mindmapContent");
if(mindmapContent != null) {
- mindmapContent.value = getFlashMovie('flashContent').getMindmap();
+ mindmapContent.value = document['flashContent'].getMindmap();
}
setUserId();
@@ -48,7 +43,7 @@
function updateContent()
{
$.post("${get}", { dispatch: "${dispatch}", mindmapId: "${mindmapId}", userId: "${userId}",
- content: getFlashMovie('flashContent').getMindmap() } );
+ content: document['flashContent'].getMindmap() } );
}
//]]>