mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-02-22 01:42:47 +01:00
Re introduce the vboxchange, hboxchange events as many applications use it
All checks were successful
gitea-sync/antos/pipeline/head This commit looks good
All checks were successful
gitea-sync/antos/pipeline/head This commit looks good
This commit is contained in:
parent
4f75e731a5
commit
ece24f7a5e
@ -155,6 +155,7 @@ namespace OS {
|
|||||||
const auto_width = [];
|
const auto_width = [];
|
||||||
let ocwidth = 0;
|
let ocwidth = 0;
|
||||||
const avaiWidth = $(this).width() - this.padding * 2;
|
const avaiWidth = $(this).width() - this.padding * 2;
|
||||||
|
const avaiheight = $(this).innerHeight() - this.padding * 2;
|
||||||
$(this.refs.yield)
|
$(this.refs.yield)
|
||||||
.children()
|
.children()
|
||||||
.each(function (e) {
|
.each(function (e) {
|
||||||
@ -188,7 +189,11 @@ namespace OS {
|
|||||||
$.each(auto_width, (i, v) =>
|
$.each(auto_width, (i, v) =>
|
||||||
$(v).css("width", `${csize}px`)
|
$(v).css("width", `${csize}px`)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
this.observable.trigger("hboxchange", {
|
||||||
|
id: this.aid,
|
||||||
|
data: { w: avaiWidth, h: avaiheight },
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -203,6 +208,7 @@ namespace OS {
|
|||||||
const auto_height = [];
|
const auto_height = [];
|
||||||
let ocheight = 0;
|
let ocheight = 0;
|
||||||
const avaiheight = $(this).innerHeight() - this.padding * 2;
|
const avaiheight = $(this).innerHeight() - this.padding * 2;
|
||||||
|
const avaiwidth = $(this).width() - this.padding * 2;
|
||||||
$(this.refs.yield)
|
$(this.refs.yield)
|
||||||
.children()
|
.children()
|
||||||
.each(function (e) {
|
.each(function (e) {
|
||||||
@ -237,6 +243,11 @@ namespace OS {
|
|||||||
$(v).css("height", `${csize}px`)
|
$(v).css("height", `${csize}px`)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.observable.trigger("vboxchange", {
|
||||||
|
id: this.aid,
|
||||||
|
data: { w: avaiwidth, h: avaiheight },
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user