From fa8492133335d79d788442b977cb0c6848929af6 Mon Sep 17 00:00:00 2001 From: rolux Date: Sun, 24 Jun 2012 17:33:13 +0200 Subject: [PATCH] fix section declarations in modules --- source/Ox.Geo/Ox.Geo.js | 4 ++-- source/Ox.Image/Ox.Image.js | 2 +- source/Ox.Unicode/Ox.Unicode.js | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/Ox.Geo/Ox.Geo.js b/source/Ox.Geo/Ox.Geo.js index e0d5eed3..02231ef0 100644 --- a/source/Ox.Geo/Ox.Geo.js +++ b/source/Ox.Geo/Ox.Geo.js @@ -4,7 +4,7 @@ Ox.load.Geo = function(options, callback) { Ox.getJSON(Ox.PATH + 'Ox.Geo/json/Ox.Geo.json?' + Ox.VERSION, function(data) { - //@ Constants ---------------------------------------------------------- + //@ Constants /*@ Ox.COUNTRIES <[o]> Array of countries @@ -139,7 +139,7 @@ Ox.load.Geo = function(options, callback) { }; - //@ Functions ---------------------------------------------------------- + //@ Functions /*@ Ox.getCountryByCode Returns a country object for a given country code diff --git a/source/Ox.Image/Ox.Image.js b/source/Ox.Image/Ox.Image.js index a8490e47..0e438f19 100644 --- a/source/Ox.Image/Ox.Image.js +++ b/source/Ox.Image/Ox.Image.js @@ -2,7 +2,7 @@ Ox.load.Image = function(options, callback) { - //@ Image ------------------------------------------------------------------ + //@ Image /*@ Ox.Image Generic image object diff --git a/source/Ox.Unicode/Ox.Unicode.js b/source/Ox.Unicode/Ox.Unicode.js index 9a9f79cc..24ae5d14 100644 --- a/source/Ox.Unicode/Ox.Unicode.js +++ b/source/Ox.Unicode/Ox.Unicode.js @@ -4,7 +4,7 @@ Ox.load.Unicode = function(options, callback) { Ox.getJSON(Ox.PATH + 'Ox.Unicode/json/Ox.Unicode.json?' + Ox.VERSION, function(chars) { - //@ Constants ---------------------------------------------------------- + //@ Constants //@ Ox.UNICODE_CHARACTERS Unicode characters Ox.UNICODE_CHARACTERS = chars; @@ -25,10 +25,10 @@ Ox.load.Unicode = function(options, callback) { byType[data.type].push(char); }); - //@ Functions ---------------------------------------------------------- + //@ Functions /*@ - Ox.getCharactersByASCII Returns all unicode equivalents of a given ASCII string + Ox.getCharactersByASCII Returns all unicode equivalents of a given ASCII character (ascii) -> <[s]> Unicode Characters ascii ASCII string > Ox.getCharactersByASCII('A').length