Renames main script file to H5ai.js and main h5ai reference to h5ai.

This commit is contained in:
Lars Jung 2012-03-07 02:33:48 +01:00
parent fbff8686bf
commit 194a202a0b
14 changed files with 159 additions and 151 deletions

View file

@ -1,5 +1,5 @@
(function ($, H5AI) {
(function ($, h5ai) {
var reSplitPath = /^\/([^\/]+\/?)$/,
reSplitPath2 = /^(\/(?:.*\/)*?([^\/]+)\/)([^\/]+\/?)$/,
@ -104,7 +104,7 @@
return sequence.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
};
H5AI.util = {
h5ai.util = {
splitPath: splitPath,
pathEndsWithSlash: pathEndsWithSlash,
getAbsHref: getAbsHref,
@ -114,4 +114,4 @@
reEscape: reEscape
};
}(jQuery, H5AI));
}(jQuery, h5ai));