Index: lams_central/conf/language/lams/ApplicationResources.properties
===================================================================
RCS file: /usr/local/cvsroot/lams_central/conf/language/lams/ApplicationResources.properties,v
diff -u -r1.151 -r1.152
--- lams_central/conf/language/lams/ApplicationResources.properties 9 Jun 2015 20:38:13 -0000 1.151
+++ lams_central/conf/language/lams/ApplicationResources.properties 30 Jun 2015 09:09:09 -0000 1.152
@@ -516,6 +516,7 @@
authoring.fla.paste.error =Sorry, you can not paste this type of activity
authoring.fla.preview.error =Error while initialising lesson for preview
authoring.fla.cross.branching.error =Cross-branching transitions are not allowed
+authoring.fla.support.transition.error =Support activities can not be connected to any other activity
authoring.fla.end.match.error =: a branch that ends in this branching does not start in it
authoring.fla.ok.button =OK
authoring.fla.cancel.button =Cancel
Index: lams_central/web/authoring/authoring.jsp
===================================================================
RCS file: /usr/local/cvsroot/lams_central/web/authoring/authoring.jsp,v
diff -u -r1.19 -r1.20
--- lams_central/web/authoring/authoring.jsp 26 Jun 2015 08:33:23 -0000 1.19
+++ lams_central/web/authoring/authoring.jsp 30 Jun 2015 09:09:10 -0000 1.20
@@ -182,6 +182,8 @@
PREVIEW_ERROR : decoderDiv.html('').text(),
CROSS_BRANCHING_ERROR : decoderDiv.html('').text(),
+
+ SUPPORT_TRANSITION_ERROR : decoderDiv.html('').text(),
END_MATCH_ERROR : decoderDiv.html('').text(),
Index: lams_central/web/includes/javascript/authoring/authoringActivity.js
===================================================================
RCS file: /usr/local/cvsroot/lams_central/web/includes/javascript/authoring/authoringActivity.js,v
diff -u -r1.51 -r1.52
--- lams_central/web/includes/javascript/authoring/authoringActivity.js 26 Jun 2015 08:33:23 -0000 1.51
+++ lams_central/web/includes/javascript/authoring/authoringActivity.js 30 Jun 2015 09:09:10 -0000 1.52
@@ -882,6 +882,7 @@
// no transitions to/from support activities
if (toActivity instanceof ActivityDefs.FloatingActivity
|| fromActivity instanceof ActivityDefs.FloatingActivity){
+ alert(LABELS.SUPPORT_TRANSITION_ERROR);
return;
}