fix broken share menu resulting from adblock plus triggered by 'share'
This commit is contained in:
parent
4304079c70
commit
54b52d681c
@ -22,6 +22,10 @@
|
|||||||
@toolbar_top-height: 64px;
|
@toolbar_top-height: 64px;
|
||||||
@toolbar_button-font: @colortheme_app-font;
|
@toolbar_button-font: @colortheme_app-font;
|
||||||
|
|
||||||
|
// if we spell 'share' correctly, then adblock plus hides the share button
|
||||||
|
// this is a workaround
|
||||||
|
.fa-shhare-alt:before { content: "\f1e0"; }
|
||||||
|
|
||||||
.dropdown_main();
|
.dropdown_main();
|
||||||
.ckeditor_fix();
|
.ckeditor_fix();
|
||||||
.history_main();
|
.history_main();
|
||||||
|
|||||||
@ -420,7 +420,7 @@ define([
|
|||||||
var hashes = metadataMgr.getPrivateData().availableHashes;
|
var hashes = metadataMgr.getPrivateData().availableHashes;
|
||||||
|
|
||||||
var $shareBlock = $('<button>', {
|
var $shareBlock = $('<button>', {
|
||||||
'class': 'fa fa-share-alt cp-toolbar-share-button',
|
'class': 'fa fa-shhare-alt cp-toolbar-share-button',
|
||||||
title: Messages.shareButton
|
title: Messages.shareButton
|
||||||
});
|
});
|
||||||
var modal = UIElements.createShareModal({
|
var modal = UIElements.createShareModal({
|
||||||
@ -449,7 +449,7 @@ define([
|
|||||||
var hashes = metadataMgr.getPrivateData().availableHashes;
|
var hashes = metadataMgr.getPrivateData().availableHashes;
|
||||||
|
|
||||||
var $shareBlock = $('<button>', {
|
var $shareBlock = $('<button>', {
|
||||||
'class': 'fa fa-share-alt cp-toolbar-share-button',
|
'class': 'fa fa-shhare-alt cp-toolbar-share-button',
|
||||||
title: Messages.shareButton
|
title: Messages.shareButton
|
||||||
});
|
});
|
||||||
var modal = UIElements.createFileShareModal({
|
var modal = UIElements.createFileShareModal({
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user