diff --git a/orun/extjs/base.py b/orun/extjs/base.py index bce57b4..ad35a4d 100644 --- a/orun/extjs/base.py +++ b/orun/extjs/base.py @@ -9,7 +9,6 @@ def js_ajax(fn, arg_dict = {}, f_type=js.js_procedure): func_args = ',\n'.join(['\'{k}\': {v}'.format( k = k,v = js.encode(v) ) for k,v in arg_dict.items()]) if func_args != '': func_args = ',\n' + func_args - print(func_args) return f_type(i, ajax_args=func_args) js.js_ajax = js_ajax diff --git a/orun/extjs/objects.py b/orun/extjs/objects.py deleted file mode 100644 index be99745..0000000 --- a/orun/extjs/objects.py +++ /dev/null @@ -1 +0,0 @@ -from orun.extjs import Ext, js