')
diff --git a/source/Ox.UI/js/Core/Ox.SyntaxHighlighter.js b/source/Ox.UI/js/Core/Ox.SyntaxHighlighter.js
index 155c9a49..d8afb691 100644
--- a/source/Ox.UI/js/Core/Ox.SyntaxHighlighter.js
+++ b/source/Ox.UI/js/Core/Ox.SyntaxHighlighter.js
@@ -35,6 +35,8 @@ Ox.SyntaxHighlighter = function(options, self) {
.replace(/\r\n/g, '\n')
.replace(/\r/g, '\n');
+ //self.options.source = Ox.minify(self.options.source);
+
self.cursor = 0;
self.source = '';
self.tokens = Ox.tokenize(self.options.source);
diff --git a/source/Ox.UI/js/Map/Ox.Map.js b/source/Ox.UI/js/Map/Ox.Map.js
index 02938071..4ca1a62f 100644
--- a/source/Ox.UI/js/Map/Ox.Map.js
+++ b/source/Ox.UI/js/Map/Ox.Map.js
@@ -90,7 +90,7 @@ Ox.Map = function(options, self) {
var that = new Ox.Element({}, self)
.defaults({
// fixme: isClickable? hasZoombar?
- clickable: false,
+ clickable: false,
editable: false,
findPlaceholder: 'Find',
labels: false,
diff --git a/source/Ox.js b/source/Ox.js
index 36e95922..86996197 100644
--- a/source/Ox.js
+++ b/source/Ox.js
@@ -10,7 +10,7 @@
Ox
The Ox
object
See Ox.wrap
for details.
(value) -> wrapped value
- value <*> any value
+ value <*> Any value
@*/
Ox = function(val) {
@@ -28,6 +28,7 @@ Ox.AMPM = ['AM', 'PM'];
//@ Ox.DURATIONS <[str]> ['year', 'month', 'day', 'minute', 'second']
Ox.DURATIONS = ['year', 'month', 'day', 'minute', 'second'];
//@ Ox.EARTH_RADIUS Radius of the earth in meters
+// see http://en.wikipedia.org/wiki/WGS-84
Ox.EARTH_RADIUS = 6378137;
//@ Ox.EARTH_CIRCUMFERENCE Circumference of the earth in meters
Ox.EARTH_CIRCUMFERENCE = Ox.EARTH_RADIUS * 2 * Math.PI;
@@ -36,8 +37,8 @@ Ox.HTML_ENTITIES = {
'"': '"', '&': '&', "'": ''', '<': '<', '>': '>'
};
//@ Ox.KEYS