dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #37288
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 19087: minor fix
------------------------------------------------------------
revno: 19087
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2015-05-05 10:26:17 +0600
message:
minor fix
modified:
dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/webapp/dhis-web-dashboard-integration/javascript/message.js
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/webapp/dhis-web-dashboard-integration/javascript/message.js'
--- dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/webapp/dhis-web-dashboard-integration/javascript/message.js 2015-05-05 04:23:07 +0000
+++ dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/webapp/dhis-web-dashboard-integration/javascript/message.js 2015-05-05 04:26:17 +0000
@@ -2,8 +2,7 @@
{
userCount().done(function(o) {
if( o.userCount > 200 ) {
- i18n_selected_more_than_200_user = i18n_selected_more_than_200_user.replace("{userCount}", o.userCount);
- setHeaderDelayMessage(i18n_selected_more_than_200_user)
+ setHeaderDelayMessage(i18n_selected_more_than_200_user.replace("{userCount}", o.userCount))
} else {
$( "#messageForm" ).submit();
}