minor bug fixes

v2.1
Steve Nyemba 2 months ago
parent ab6567176e
commit a0cf018edf

@ -13,6 +13,7 @@ dialog.show = function(_args,_pointer){
jx.dom.set.value('dialog-message',_args.message) jx.dom.set.value('dialog-message',_args.message)
} }
// //
// In order to perhaps execute any js script that should have been executed on load ... // In order to perhaps execute any js script that should have been executed on load ...
// //
@ -27,6 +28,9 @@ dialog.show = function(_args,_pointer){
// //
} }
}) })
if (_pointer !=null){
_pointer()
}
}) })
} }

@ -119,6 +119,9 @@ jx.ajax.get.instance = function(){
} }
this.delete = function (url,callback){
this.send(url,callback,'DELETE')
}
this.put = function(url,callback){ this.put = function(url,callback){
this.send(url,callback,'PUT') ; this.send(url,callback,'PUT') ;
} }

Loading…
Cancel
Save