remove Ox.each, , $.extend, $.map and $.merge

This commit is contained in:
rolux 2011-09-17 20:36:30 +02:00
commit f7ea2f71ee
19 changed files with 62 additions and 69 deletions

View file

@ -11,7 +11,7 @@ Ox.load('UI', {
window.pandora = new Ox.App({url: '/api/'}).bindEvent({
apiURL: '/api/',
}).bindEvent('load', function(data) {
$.extend(pandora, {
Ox.extend(pandora, {
ui: {},
info: function(item) {
var that = Ox.Element()
@ -116,7 +116,7 @@ window.pandora = new Ox.App({url: '/api/'}).bindEvent({
'value': value
}
});
$.each(args, function(i, a) {
args.forEach(function(a, i) {
Ox.print(i, a);
if (a.key == key) {
result = a.value;