thedesk/app/js/ui/pip.js

33 lines
915 B
JavaScript
Raw Permalink Normal View History

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