mirror of
https://github.com/lxsang/antos-frontend.git
synced 2024-12-27 01:38:21 +01:00
fix stuff
This commit is contained in:
parent
278ee54b2e
commit
3922f3764d
@ -323,7 +323,7 @@ class FileDiaLog extends BaseDialog
|
|||||||
return me.notify __("Only {0} could be selected", me.data.mimes.join(",")) unless m
|
return me.notify __("Only {0} could be selected", me.data.mimes.join(",")) unless m
|
||||||
d = f.path
|
d = f.path
|
||||||
d = f.path.asFileHandler().parent() if f.type is "file"
|
d = f.path.asFileHandler().parent() if f.type is "file"
|
||||||
me.handler d, ($ filename).val(), f.path if me.handler
|
me.handler d, ($ filename).val(), f.path, f if me.handler
|
||||||
#sel = if me.data and me.data.selection then me.data.selection else "file"
|
#sel = if me.data and me.data.selection then me.data.selection else "file"
|
||||||
#me.handler f, ($ filename).val() if me.handler and ((f.type is sel) or (sel is "*"))
|
#me.handler f, ($ filename).val() if me.handler and ((f.type is sel) or (sel is "*"))
|
||||||
me.quit()
|
me.quit()
|
||||||
|
@ -41,12 +41,13 @@
|
|||||||
{
|
{
|
||||||
if(!self.enable) return
|
if(!self.enable) return
|
||||||
opts.swon = !self.swon
|
opts.swon = !self.swon
|
||||||
|
self.swon = opts.swon
|
||||||
var data = {
|
var data = {
|
||||||
id: self.rid,
|
id: self.rid,
|
||||||
data: opts.swon
|
data: opts.swon
|
||||||
}
|
}
|
||||||
if(self.onchange)
|
if(opts.onchange)
|
||||||
self.onchange(data)
|
opts.onchange(data)
|
||||||
if(self.root.observable)
|
if(self.root.observable)
|
||||||
self.root.observable.trigger("switch", data)
|
self.root.observable.trigger("switch", data)
|
||||||
|
|
||||||
|
@ -66,6 +66,8 @@ class DummyApp extends this.OS.GUI.BaseApplication
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
(@find "sw").set "onchange", (e) ->
|
||||||
|
console.log e, ((self.find "sw").get "swon")
|
||||||
tree.set "data",tdata
|
tree.set "data",tdata
|
||||||
|
|
||||||
list = @find "mylist"
|
list = @find "mylist"
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<afx-resizer data-width = "5" ></afx-resizer>
|
<afx-resizer data-width = "5" ></afx-resizer>
|
||||||
<afx-vbox>
|
<afx-vbox>
|
||||||
<afx-button data-height="30" text="__(Read more)" iconclass="fa fa-camera-retro fa-lg" id="button"></afx-button>
|
<afx-button data-height="30" text="__(Read more)" iconclass="fa fa-camera-retro fa-lg" id="button"></afx-button>
|
||||||
<afx-switch enable= true data-height="30"></afx-switch>
|
<afx-switch data-id="sw" enable= true data-height="30"></afx-switch>
|
||||||
<afx-calendar-view></afx-calendar-view>
|
<afx-calendar-view></afx-calendar-view>
|
||||||
<afx-resizer data-height = "5" ></afx-resizer>
|
<afx-resizer data-height = "5" ></afx-resizer>
|
||||||
<afx-color-picker></afx-color-picker>
|
<afx-color-picker></afx-color-picker>
|
||||||
|
Loading…
Reference in New Issue
Block a user