mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-06-11 10:33:22 +02:00
Add account information panel
This commit is contained in:
@ -41,7 +41,6 @@ div#toolbarRight {
|
||||
margin: 6px 10px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#account {
|
||||
float: right;
|
||||
display: inline;
|
||||
@ -52,6 +51,10 @@ div#toolbarRight {
|
||||
height: 36px;
|
||||
}
|
||||
|
||||
#accountSettingsPanel{
|
||||
padding:10px 10px;
|
||||
}
|
||||
|
||||
#share {
|
||||
margin: 0 30px;
|
||||
}
|
||||
|
@ -83,9 +83,6 @@
|
||||
<div id="font" class="buttonContainer"></div>
|
||||
</div>
|
||||
<div id="toolbarRight">
|
||||
<div id="account">
|
||||
<img src="images/account.svg"/>
|
||||
</div>
|
||||
<div id="share" class="actionButton">Share</div>
|
||||
<div id="export" class="buttonOn">
|
||||
<img src="images/export.svg" />
|
||||
@ -96,6 +93,9 @@
|
||||
<div id="history" class="buttonOn">
|
||||
<img src="images/history.svg" />
|
||||
</div>
|
||||
<div id="account">
|
||||
<img src="images/account.svg"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -3,6 +3,10 @@ import { buildDesigner, buildOptions } from '../../../../src/components/Designer
|
||||
import { PersistenceManager, LocalStorageManager } from '../../../../src';
|
||||
import LoadingModal from '../../../../src/components/widget/LoadingModal';
|
||||
|
||||
// Account details ...
|
||||
global.accountName = 'Test User';
|
||||
global.accountEmail = 'test@example.com';
|
||||
|
||||
const loadingModal = new LoadingModal();
|
||||
loadingModal.show();
|
||||
|
||||
|
Reference in New Issue
Block a user