dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #22225
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 10653: minor fixes to offlie anonymous
------------------------------------------------------------
revno: 10653
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2013-04-22 12:36:33 +0700
message:
minor fixes to offlie anonymous
modified:
dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/anonymousRegistration.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-caseentry/src/main/webapp/dhis-web-caseentry/javascript/anonymousRegistration.js'
--- dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/anonymousRegistration.js 2013-04-18 15:32:46 +0000
+++ dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/anonymousRegistration.js 2013-04-22 05:36:33 +0000
@@ -651,7 +651,9 @@
hideById( 'dataEntryInfor' );
setInnerHTML( 'listDiv', html );
}
- } ).complete(function() {
+ } ).fail(function() {
+ hideById( 'dataEntryInfor' );
+ } ).always(function() {
var searchInfor = (listAll) ? i18n_list_all_events : i18n_search_events_by_dataelements;
setInnerHTML( 'searchInforTD', searchInfor );
@@ -666,7 +668,7 @@
}
showById( 'listDiv' );
- hideById( 'loaderDiv' );
+ hideLoader();
});
}