Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Desktop Client
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SpinShare
Desktop Client
Commits
477e9099
Commit
477e9099
authored
Apr 11, 2021
by
Laura Heimann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved library update to main thread again
parent
57a75fde
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
src/main.js
src/main.js
+8
-4
src/views/Login.vue
src/views/Login.vue
+0
-4
No files found.
src/main.js
View file @
477e9099
...
...
@@ -3,11 +3,15 @@ import App from './App.vue';
import
router
from
'
./router
'
;
import
store
from
'
./store
'
;
import
i18n
from
'
./i18n
'
;
import
moment
from
'
moment
'
import
VueTilt
from
'
vue-tilt.js
'
import
moment
from
'
moment
'
;
import
VueTilt
from
'
vue-tilt.js
'
;
import
{
ipcRenderer
}
from
'
electron
'
;
import
VueObserveVisibility
from
'
vue-observe-visibility
'
import
{
VTooltip
,
VPopover
,
VClosePopover
}
from
'
v-tooltip
'
import
VueObserveVisibility
from
'
vue-observe-visibility
'
;
import
{
VTooltip
,
VPopover
,
VClosePopover
}
from
'
v-tooltip
'
;
import
ChartLibrary
from
'
@/modules/module.library.js
'
;
let
chartLibrary
=
new
ChartLibrary
();
chartLibrary
.
updateLibrary
();
Vue
.
use
(
VueTilt
);
Vue
.
use
(
VueObserveVisibility
);
...
...
src/views/Login.vue
View file @
477e9099
...
...
@@ -24,7 +24,6 @@
<
script
>
import
SSAPI
from
'
@/modules/module.api.js
'
;
import
UserSettings
from
'
@/modules/module.usersettings.js
'
;
import
ChartLibrary
from
'
@/modules/module.library.js
'
;
import
Loading
from
'
@/components/Loading.vue
'
;
...
...
@@ -47,9 +46,6 @@
let
ssapi
=
new
SSAPI
();
let
userSettings
=
new
UserSettings
();
let
chartLibrary
=
new
ChartLibrary
();
chartLibrary
.
updateLibrary
();
if
(
!
userSettings
.
get
(
"
connectToken
"
))
{
this
.
showLoginBox
();
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment