No js for popover positionning

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
このコミットが含まれているのは:
John Molakvoæ (skjnldsv) 2017-09-27 13:34:29 +02:00
コミット 291e3d331f
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: FB5ACEED51955BF8
2個のファイルの変更1行の追加11行の削除

ファイルの表示

@ -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);

ファイルの表示

@ -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);
}
});