projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f86ac3
)
The Null geocoder object is in map.js, not it's own file.
author
Michael J. Rubinsky
<mrubinsk@horde.org>
Thu, 4 Mar 2010 16:04:26 +0000
(11:04 -0500)
committer
Michael J. Rubinsky
<mrubinsk@horde.org>
Thu, 4 Mar 2010 16:05:49 +0000
(11:05 -0500)
Fixes Bug: #8898
horde/js/hordemap/map.js
patch
|
blob
|
history
diff --git
a/horde/js/hordemap/map.js
b/horde/js/hordemap/map.js
index
0dec891
..
db760a3
100644
(file)
--- a/
horde/js/hordemap/map.js
+++ b/
horde/js/hordemap/map.js
@@
-40,7
+40,7
@@
HordeMap = {
}
this._addScript(path + this._opts.driver.toLowerCase() + '.js');
- if (this._opts.geocoder) {
+ if (this._opts.geocoder
&& this._opts.geocoder != 'Null'
) {
this._addScript(this._getProviderUrl(this._opts.geocoder));
this._addScript(path + this._opts.geocoder.toLowerCase() + '.js');
}