File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 201201
202202 & :not (.collapsed ){
203203 & .mobile {
204- z-index :9999999999999999 ;
204+ z-index :9999 ;
205205 background :white ;
206206 width :100% ;
207207 }
Original file line number Diff line number Diff line change 1515 <span v-if =" !isSettings" >Settings</span >
1616 <span v-if =" isSettings" >Back</span >
1717 </figure >
18+ <figure v-if =" isMobile" @click =" toggleCollapsed" class =" icon" >
19+ <i class =" fas fa-user" ></i >
20+ </figure >
1821 <!-- <figure @click="selectAccount" class="icon"><i class="fal fa-user"></i><span>Accounts</span></figure>-->
1922 <figure v-if =" featureFlags.premium" class =" icon breaker" ></figure >
2023 <figure v-if =" featureFlags.premium" @click =" transfer" class =" icon" ><i class =" fal fa-money-bill-alt" ></i ><span >Send Money</span ></figure >
8083 ' scatter' ,
8184 ' topActionsColor' ,
8285 ' currencies' ,
83- ' loadingBalances'
86+ ' loadingBalances' ,
87+ ' collapsedSidebar'
8488 ]),
8589 currency (){
8690 return PriceService .fiatSymbol ()
128132 PopupService .push (Popups .editNetworkAccount (selectedNetwork));
129133 }));
130134 },
135+ toggleCollapsed (){
136+ this [UIActions .SET_COLLAPSED_SIDEBAR ](! this .collapsedSidebar );
137+ },
131138 friends (){
132139 if (! this .hasPremium ){
133140 PopupService .push (Popups .goPremium (success => {
223230 },
224231
225232 ... mapActions ([
226- UIActions .SET_THEME
233+ UIActions .SET_THEME ,
234+ UIActions .SET_COLLAPSED_SIDEBAR ,
227235 ])
228236 }
229237 }
Original file line number Diff line number Diff line change 140140 if (this .fioData .length >= 5 ) break ;
141141 const request = requests[i];
142142
143- const sharedSecret = await window .wallet .createSharedSecret (' fio' , this .account .publicKey , request .payee_fio_public_key ).catch (() => null );
143+ const key = this .state === STATES .RECEIVED ? request .payee_fio_public_key : request .payer_fio_public_key ;
144+ const sharedSecret = await window .wallet .createSharedSecret (' fio' , this .account .publicKey , key).catch (() => null );
144145 if (! sharedSecret) continue ;
145146
146147 const content = await plugin .decrypt (' new_funds_content' , request .content , sharedSecret).catch (err => {
Original file line number Diff line number Diff line change 300300 min-height :calc (100vh - #{$mobilenavbarheight } );
301301 }
302302 }
303+
304+ .main-panel {
305+ width :calc (100% - #{$accountssidebar } + 7px );
306+
307+ transition :width 0.2s ease ;
308+
309+ & .expanded {
310+ width :calc (100% + 7px );
311+ }
312+ }
303313 }
304314
305315
Original file line number Diff line number Diff line change 13091309 web3 "^1.2.0"
13101310 web3-provider-engine "^15.0.4"
13111311
1312- " @walletpack/fio@^0.0.27 " :
1313- version "0.0.27 "
1314- resolved "https://registry.yarnpkg.com/@walletpack/fio/-/fio-0.0.27 .tgz#300814243006f7cdea222642d90f0ea7030607ec "
1315- integrity sha512-ak79iHiYkhpKS5SoxZk3NYUGnedfV5LzpUKN8WS640fWToonQAYA3Dx+7Uxef+hVVmnQAvjuz48w428TU0t3PQ ==
1312+ " @walletpack/fio@^0.0.28 " :
1313+ version "0.0.28 "
1314+ resolved "https://registry.yarnpkg.com/@walletpack/fio/-/fio-0.0.28 .tgz#551df9216ea362c83200aa5b782db0983ad35dc5 "
1315+ integrity sha512-CJkj0Cgrd33kFZbuQd/+2h8tvF/4VwlG6Jo3AWZJ6QLj/j5AuE6KS3bRDZPupJA1sWBKazl5ZMdeUQiCkCfVEg ==
13161316 dependencies :
13171317 " @fioprotocol/fiojs" " ^1.0.1"
13181318 " @walletpack/core" " ^1.0.50"
You can’t perform that action at this time.
0 commit comments