dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #24187
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 11813: (GIS) Layer button tooltip.
------------------------------------------------------------
revno: 11813
committer: Jan Henrik Overland <janhenrik.overland@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2013-08-27 11:01:36 +0200
message:
(GIS) Layer button tooltip.
modified:
dhis-2/dhis-web/dhis-web-mapping/src/main/webapp/dhis-web-mapping/app/scripts/app.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-mapping/src/main/webapp/dhis-web-mapping/app/scripts/app.js'
--- dhis-2/dhis-web/dhis-web-mapping/src/main/webapp/dhis-web-mapping/app/scripts/app.js 2013-08-20 12:59:06 +0000
+++ dhis-2/dhis-web/dhis-web-mapping/src/main/webapp/dhis-web-mapping/app/scripts/app.js 2013-08-27 09:01:36 +0000
@@ -4984,31 +4984,37 @@
a.push({
iconCls: 'gis-btn-icon-' + gis.layer.facility.id,
menu: gis.layer.facility.menu,
+ tooltip: GIS.i18n.symbol_layer,
width: 26
});
a.push({
iconCls: 'gis-btn-icon-' + gis.layer.boundary.id,
menu: gis.layer.boundary.menu,
+ tooltip: GIS.i18n.boundary_layer,
width: 26
});
a.push({
iconCls: 'gis-btn-icon-' + gis.layer.thematic1.id,
menu: gis.layer.thematic1.menu,
+ tooltip: GIS.i18n.thematic_layer + ' 1',
width: 26
});
a.push({
iconCls: 'gis-btn-icon-' + gis.layer.thematic2.id,
menu: gis.layer.thematic2.menu,
+ tooltip: GIS.i18n.thematic_layer + ' 2',
width: 26
});
a.push({
iconCls: 'gis-btn-icon-' + gis.layer.thematic3.id,
menu: gis.layer.thematic3.menu,
+ tooltip: GIS.i18n.thematic_layer + ' 3',
width: 26
});
a.push({
iconCls: 'gis-btn-icon-' + gis.layer.thematic4.id,
menu: gis.layer.thematic4.menu,
+ tooltip: GIS.i18n.thematic_layer + ' 4',
width: 26
});
a.push({