load Ox.Element before Ox.Request, should be a better way to do this
This commit is contained in:
parent
0efc4709a3
commit
216ad5f44f
2 changed files with 2 additions and 2 deletions
|
@ -303,7 +303,7 @@ Ox.Element = function(options, self) {
|
|||
bind('bind', event, callback);
|
||||
});
|
||||
return that;
|
||||
}
|
||||
};
|
||||
|
||||
/*@
|
||||
bindEventOnce <function> Binds a function to an event, once
|
||||
|
|
|
@ -107,7 +107,7 @@ def build_oxjs(geo):
|
|||
js = ''
|
||||
root = source_path + 'Ox.UI/'
|
||||
for path, dirnames, filenames in os.walk(root):
|
||||
for filename in filenames:
|
||||
for filename in sorted(filenames):
|
||||
# jquery gets included by Ox.UI loader
|
||||
# theme css files get included by main css
|
||||
# svgs are loaded as URLs or dataURLs
|
||||
|
|
Loading…
Reference in a new issue