No js for popover positionning

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2017-09-27 13:34:29 +02:00
rodzic d4f1518533
commit 291e3d331f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: FB5ACEED51955BF8
2 zmienionych plików z 1 dodań i 11 usunięć

Wyświetl plik

@ -219,7 +219,7 @@ input {
.federationScopeMenu {
top: 44px;
margin: -5px 5px 0;
margin-right: calc(-50% + 30px); /* half - the triangle icon width - borders */
&.bubble::after {
right: 50%;
transform: translate(50%, 0);

Wyświetl plik

@ -137,16 +137,6 @@
this.$el.removeClass('hidden');
OC.showMenu(null, this.$el);
//Set the menuwidth
var menuWidth = this.$el.width();
this.$el.css('width', menuWidth);
//Calculate menu position
var l = offsetIcon.left - offsetHeading.left;
l = l - (menuWidth / 2) + ($el.outerWidth()/2);
this.$el.css('left', l);
}
});