@@ -90,7 +91,6 @@
-
Index: lams_tool_laqa/web/authoring/conditions.jsp
===================================================================
diff -u -r0af4ed13b963a588f3499b080801863d57f8ad95 -r55645d4b796f36715b66a70fce66406a986ee647
--- lams_tool_laqa/web/authoring/conditions.jsp (.../conditions.jsp) (revision 0af4ed13b963a588f3499b080801863d57f8ad95)
+++ lams_tool_laqa/web/authoring/conditions.jsp (.../conditions.jsp) (revision 55645d4b796f36715b66a70fce66406a986ee647)
@@ -40,49 +40,41 @@
showConditionMessage(url);
}
//The panel of taskList list panel
- var conditionListTargetDiv = "conditionsArea";
+ var conditionListTargetDiv = "#conditionsArea";
function deleteCondition(orderId,sessionMapID){
var url = "
";
var reqIDVar = new Date();
- var param = "orderId=" + orderId +"&sessionMapID="+sessionMapID;;
- var myAjax = new Ajax.Updater(
- conditionListTargetDiv,
- url,
- {
- method:'get',
- parameters:param,
- evalScripts:true
- }
- );
+ $(conditionListTargetDiv).load(
+ url,
+ {
+ orderId: orderId,
+ sessionMapID: sessionMapID
+ }
+ );
}
function upCondition(orderId,sessionMapID){
var url = "
";
var reqIDVar = new Date();
- var param = "orderId=" + orderId + "&sessionMapID="+sessionMapID;;
- var myAjax = new Ajax.Updater(
- conditionListTargetDiv,
- url,
- {
- method:'get',
- parameters:param,
- evalScripts:true
- }
- );
+ $(conditionListTargetDiv).load(
+ url,
+ {
+ orderId: orderId,
+ sessionMapID: sessionMapID
+ }
+ );
}
function downCondition(orderId,sessionMapID){
var url = "
";
var reqIDVar = new Date();
var param = "orderId=" + orderId + "&sessionMapID="+sessionMapID;;
- var myAjax = new Ajax.Updater(
- conditionListTargetDiv,
- url,
- {
- method:'get',
- parameters:param,
- evalScripts:true
- }
- );
+ $(conditionListTargetDiv).load(
+ url,
+ {
+ orderId: orderId,
+ sessionMapID: sessionMapID
+ }
+ );
}
Index: lams_tool_laqa/web/authoring/editQuestionBox.jsp
===================================================================
diff -u -r7db98069c542476a8a3aea28e0822b751e120085 -r55645d4b796f36715b66a70fce66406a986ee647
--- lams_tool_laqa/web/authoring/editQuestionBox.jsp (.../editQuestionBox.jsp) (revision 7db98069c542476a8a3aea28e0822b751e120085)
+++ lams_tool_laqa/web/authoring/editQuestionBox.jsp (.../editQuestionBox.jsp) (revision 55645d4b796f36715b66a70fce66406a986ee647)
@@ -5,8 +5,10 @@
<%@ include file="/common/header.jsp"%>
+
+
@@ -50,7 +57,8 @@
+ contentFolderID="${qaGeneralAuthoringDTO.contentFolderID}" width="99%">
+
@@ -59,6 +67,15 @@
+
+
+
+
+
Index: lams_tool_laqa/web/authoring/newQuestionBox.jsp
===================================================================
diff -u -r21ce4d0194e8b81e613f4f6e14eb4e8bf53bdf59 -r55645d4b796f36715b66a70fce66406a986ee647
--- lams_tool_laqa/web/authoring/newQuestionBox.jsp (.../newQuestionBox.jsp) (revision 21ce4d0194e8b81e613f4f6e14eb4e8bf53bdf59)
+++ lams_tool_laqa/web/authoring/newQuestionBox.jsp (.../newQuestionBox.jsp) (revision 55645d4b796f36715b66a70fce66406a986ee647)
@@ -7,8 +7,11 @@
<%@ include file="/common/header.jsp"%>
<%@ include file="/includes/jsp/qaWizardCommon.jsp"%>
-
-
+
+
+
+
+
-
-
@@ -98,7 +85,6 @@
-
@@ -176,7 +162,6 @@
-
Fisheye: Tag f393908c737e5401dda3b995bacb6e4c4a5e5a50 refers to a dead (removed) revision in file `lams_tool_laqa/web/includes/javascript/common.js'.
Fisheye: No comparison available. Pass `N' to diff?
Index: lams_tool_laqa/web/includes/qalearning.css
===================================================================
diff -u
--- lams_tool_laqa/web/includes/qalearning.css (revision 0)
+++ lams_tool_laqa/web/includes/qalearning.css (revision 55645d4b796f36715b66a70fce66406a986ee647)
@@ -0,0 +1,22 @@
+ .rating-stars-div {margin-top: 8px;}
+ .user-answer {padding: 0 2px;}
+ tr.odd:hover .jStar {background-image: url(/lams/images/css/jquery.jRating-stars-grey.png)!important;}
+ tr.even:hover .jStar {background-image: url(/lams/images/css/jquery.jRating-stars-light-grey.png)!important;}
+ tr.odd .jStar {background-image: url(/lams/images/css/jquery.jRating-stars-light-blue.png)!important;}
+ .tablesorter-blue {margin-bottom: 5px;}
+ .pager {padding-bottom: 20px;}
+ .extra-controls-inner:after {
+ margin-top: -10px;
+ }
+ .rating-comment{
+ background-image: none;
+ background-color: rgba(205, 205, 205, 0.1);
+ border: 1px solid rgba(205, 205, 205, 0.2);
+ }
+ textarea {
+ margin: 10px 0px;
+ width: 88%;
+ }
+ .add-comment {
+ margin-top: 60px;
+ }
\ No newline at end of file
Index: lams_tool_laqa/web/learning/AnswersContent.jsp
===================================================================
diff -u -r732f77a31113c5838d0704829b99418d90053471 -r55645d4b796f36715b66a70fce66406a986ee647
--- lams_tool_laqa/web/learning/AnswersContent.jsp (.../AnswersContent.jsp) (revision 732f77a31113c5838d0704829b99418d90053471)
+++ lams_tool_laqa/web/learning/AnswersContent.jsp (.../AnswersContent.jsp) (revision 55645d4b796f36715b66a70fce66406a986ee647)
@@ -32,22 +32,59 @@
+
+
+
+
Index: lams_tool_laqa/web/learning/mobile/CombinedAnswersContent.jsp
===================================================================
diff -u -r6c5d0c6b8ff17d661580df2c265f2dcabfe7d76c -r55645d4b796f36715b66a70fce66406a986ee647
--- lams_tool_laqa/web/learning/mobile/CombinedAnswersContent.jsp (.../CombinedAnswersContent.jsp) (revision 6c5d0c6b8ff17d661580df2c265f2dcabfe7d76c)
+++ lams_tool_laqa/web/learning/mobile/CombinedAnswersContent.jsp (.../CombinedAnswersContent.jsp) (revision 55645d4b796f36715b66a70fce66406a986ee647)
@@ -12,55 +12,69 @@
-
-
-
-
+
+
- -
-
-
- :
+
+
+
+
+
+
+ :
+
+
+
+ ${questionEntry.value.minWordsLimit}
+
+
-
-
+
+
+
+
+
-
-
-
-
-
+ class="min-words-limit-enabled"
+ >
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
+
\ No newline at end of file
Index: lams_tool_laqa/web/learning/mobile/LearnerRep.jsp
===================================================================
diff -u -r41d085956bd96f7c50877320a5eec6b496e0cea2 -r55645d4b796f36715b66a70fce66406a986ee647
--- lams_tool_laqa/web/learning/mobile/LearnerRep.jsp (.../LearnerRep.jsp) (revision 41d085956bd96f7c50877320a5eec6b496e0cea2)
+++ lams_tool_laqa/web/learning/mobile/LearnerRep.jsp (.../LearnerRep.jsp) (revision 55645d4b796f36715b66a70fce66406a986ee647)
@@ -12,7 +12,9 @@
-
+
+
+
@@ -25,32 +27,49 @@
-
-
-
+
+
- >
+
+
+
@@ -115,6 +138,7 @@
+