dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #25127
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 12385: minor js fix in expressionBuilder.js
------------------------------------------------------------
revno: 12385
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2013-10-02 14:34:35 +0200
message:
minor js fix in expressionBuilder.js
modified:
dhis-2/dhis-web/dhis-web-validationrule/src/main/webapp/dhis-web-validationrule/javascript/expressionBuilder.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-validationrule/src/main/webapp/dhis-web-validationrule/javascript/expressionBuilder.js'
--- dhis-2/dhis-web/dhis-web-validationrule/src/main/webapp/dhis-web-validationrule/javascript/expressionBuilder.js 2013-04-21 20:06:01 +0000
+++ dhis-2/dhis-web/dhis-web-validationrule/src/main/webapp/dhis-web-validationrule/javascript/expressionBuilder.js 2013-10-02 12:34:35 +0000
@@ -52,7 +52,7 @@
jQuery.get( '../api/constants.json?paging=false&links=false', {}, function( json )
{
- if ( json.constants.length == 0 )
+ if ( !json.constants || json.constants.length == 0 )
{
setInnerHTML( 'constantHeader', "<i style='color:red'>"+i18n_no_constant_to_select+"</i>" );
return;