2019-05-19 17:39:30 +10:00
|
|
|
function pip(id) {
|
2020-08-02 17:08:07 +10:00
|
|
|
$("#pip-content").html($("[toot-id=" + id + "] .additional").html())
|
|
|
|
$("#pip").removeClass("hide")
|
2018-03-11 01:22:59 +11:00
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
function endPip() {
|
2020-08-02 17:08:07 +10:00
|
|
|
$("#pip-content").html("")
|
|
|
|
$("#pip").addClass("hide")
|
2018-03-11 01:22:59 +11:00
|
|
|
}
|
|
|
|
|
2019-05-19 17:39:30 +10:00
|
|
|
function pipHoriz() {
|
|
|
|
if ($("#pip").hasClass("pip-left")) {
|
2020-08-02 17:08:07 +10:00
|
|
|
$("#pip").removeClass("pip-left")
|
|
|
|
$(".pip-horiz").text("chevron_left")
|
|
|
|
$("#pip").addClass("pip-right")
|
2019-05-19 17:39:30 +10:00
|
|
|
} else {
|
2020-08-02 17:08:07 +10:00
|
|
|
$("#pip").addClass("pip-left")
|
|
|
|
$("#pip").removeClass("pip-right")
|
|
|
|
$(".pip-horiz").text("chevron_right")
|
2018-03-11 01:22:59 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-19 17:39:30 +10:00
|
|
|
function pipVert() {
|
|
|
|
if ($("#pip").hasClass("pip-top")) {
|
2020-08-02 17:08:07 +10:00
|
|
|
$("#pip").removeClass("pip-top")
|
|
|
|
$("#pip").addClass("pip-bottom")
|
|
|
|
$(".pip-vert").text("expand_less")
|
2019-05-19 17:39:30 +10:00
|
|
|
} else {
|
2020-08-02 17:08:07 +10:00
|
|
|
$("#pip").addClass("pip-top")
|
|
|
|
$("#pip").removeClass("pip-bottom")
|
|
|
|
$(".pip-vert").text("expand_more")
|
2018-03-11 01:22:59 +11:00
|
|
|
}
|
|
|
|
}
|