mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-14 11:05:41 +05:00
Fix flexbox issue
This commit is contained in:
parent
028d4941ab
commit
74b49adae5
@ -418,7 +418,7 @@ define([
|
||||
var localStore = window.cryptpadStore;
|
||||
localStore.get('hide-alert-teamInvite', function (val) {
|
||||
if (val === '1') { return; }
|
||||
$(linkWarning).show();
|
||||
$(linkWarning).css('display', 'flex');
|
||||
|
||||
$(dismissButton).on('click', function () {
|
||||
localStore.put('hide-alert-teamInvite', '1');
|
||||
|
||||
@ -341,7 +341,7 @@ define([
|
||||
|
||||
localStore.get('hide-alert-shareLinkWarning', function (val) {
|
||||
if (val === '1') { return; }
|
||||
$(shareLinkWarning).show();
|
||||
$(shareLinkWarning).css('display', 'flex');
|
||||
|
||||
$(dismissButton).on('click', function () {
|
||||
localStore.put('hide-alert-shareLinkWarning', '1');
|
||||
@ -737,7 +737,7 @@ define([
|
||||
|
||||
localStore.get('hide-alert-shareLinkWarning', function (val) {
|
||||
if (val === '1') { return; }
|
||||
$(shareLinkWarning).show();
|
||||
$(shareLinkWarning).css('display', 'flex');
|
||||
|
||||
$(dismissButton).on('click', function () {
|
||||
localStore.put('hide-alert-shareLinkWarning', '1');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user