aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/diabook/js
diff options
context:
space:
mode:
authortommy tomson <thomas.bierey@gmx.de>2012-05-08 03:29:25 +0200
committertommy tomson <thomas.bierey@gmx.de>2012-05-08 03:29:25 +0200
commit88443ed3fb3c4d91f93d3520f260aa40eb6ec694 (patch)
tree172ae2afa88c93450f292ff4dc2e401874dac4eb /view/theme/diabook/js
parent8a4e3cc3701c3278e35d917de526fd8b032709ab (diff)
downloadvolse-hubzilla-88443ed3fb3c4d91f93d3520f260aa40eb6ec694.tar.gz
volse-hubzilla-88443ed3fb3c4d91f93d3520f260aa40eb6ec694.tar.bz2
volse-hubzilla-88443ed3fb3c4d91f93d3520f260aa40eb6ec694.zip
diabook-themes: state of the boxes at right_aside are now stored in db, instead of cookie.
Diffstat (limited to 'view/theme/diabook/js')
-rw-r--r--view/theme/diabook/js/jquery.mapquery.mqMousePosition.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/view/theme/diabook/js/jquery.mapquery.mqMousePosition.js b/view/theme/diabook/js/jquery.mapquery.mqMousePosition.js
index 54d0c5309..d4370bfe4 100644
--- a/view/theme/diabook/js/jquery.mapquery.mqMousePosition.js
+++ b/view/theme/diabook/js/jquery.mapquery.mqMousePosition.js
@@ -94,10 +94,10 @@ $.widget("mapQuery.mqMousePosition", {
new OpenLayers.Projection(mapProjection),
new OpenLayers.Projection(displayProjection));
}
- $("#mq-mouseposition-x", element).html(
- this.options.x+': '+pos.lon.toFixed(this.options.precision));
- $("#mq-mouseposition-y", element).html(
- this.options.y+': '+pos.lat.toFixed(this.options.precision));
+ $("#id_diabook_ELPosX", element).val(
+ this.options.x+pos.lon.toFixed(this.options.precision));
+ $("#id_diabook_ELPosY", element).val(
+ this.options.y+pos.lat.toFixed(this.options.precision));
},
_onMouseMove: function(evt, data) {