fix section declarations in modules
This commit is contained in:
parent
1fb1cf2727
commit
fa84921333
3 changed files with 6 additions and 6 deletions
|
@ -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 <f> Returns a country object for a given country code
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
Ox.load.Image = function(options, callback) {
|
||||
|
||||
//@ Image ------------------------------------------------------------------
|
||||
//@ Image
|
||||
|
||||
/*@
|
||||
Ox.Image <f> Generic image object
|
||||
|
|
|
@ -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 <o> 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 <f> Returns all unicode equivalents of a given ASCII string
|
||||
Ox.getCharactersByASCII <f> Returns all unicode equivalents of a given ASCII character
|
||||
(ascii) -> <[s]> Unicode Characters
|
||||
ascii <s> ASCII string
|
||||
> Ox.getCharactersByASCII('A').length
|
||||
|
|
Loading…
Reference in a new issue