2020-03-27 00:22:33 +08:00
|
|
|
// discourse-skip-module
|
2013-06-21 01:58:54 +08:00
|
|
|
function exists(selector) {
|
2016-08-25 04:53:43 +08:00
|
|
|
return count(selector) > 0;
|
2013-06-21 01:58:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function count(selector) {
|
|
|
|
return find(selector).length;
|
|
|
|
}
|
|
|
|
|
2015-03-04 20:02:36 +08:00
|
|
|
function visible(selector) {
|
|
|
|
return find(selector + ":visible").length > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
function invisible(selector) {
|
2020-03-27 00:22:33 +08:00
|
|
|
const $items = find(selector + ":visible");
|
|
|
|
return (
|
|
|
|
$items.length === 0 ||
|
|
|
|
$items.css("opacity") === "0" ||
|
|
|
|
$items.css("visibility") === "hidden"
|
|
|
|
);
|
2015-03-04 20:02:36 +08:00
|
|
|
}
|