move re funct from Ext to js module
parent
cac13a1da3
commit
d25ed424ea
|
@ -36,9 +36,6 @@ def getCmp(id):
|
||||||
def getBody():
|
def getBody():
|
||||||
return js.JsNode('Ext.getBody()')
|
return js.JsNode('Ext.getBody()')
|
||||||
|
|
||||||
def re(pattern):
|
|
||||||
return js.RE(pattern)
|
|
||||||
|
|
||||||
tip = js.JsNode('Ext.tip')
|
tip = js.JsNode('Ext.tip')
|
||||||
|
|
||||||
class Component(js.JsObject):
|
class Component(js.JsObject):
|
||||||
|
|
|
@ -11,6 +11,9 @@ class RE:
|
||||||
def __init__(self, re):
|
def __init__(self, re):
|
||||||
self.re = re
|
self.re = re
|
||||||
|
|
||||||
|
def re(pattern):
|
||||||
|
return RE(pattern)
|
||||||
|
|
||||||
class FuncWithParams:
|
class FuncWithParams:
|
||||||
def __init__(self, func, args = [], params = {}):
|
def __init__(self, func, args = [], params = {}):
|
||||||
self.func = func
|
self.func = func
|
||||||
|
|
Loading…
Reference in New Issue