Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
clinicaltrials
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
david Chavalarias
clinicaltrials
Commits
2232005f
Commit
2232005f
authored
Jun 16, 2017
by
Romain Loth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fixes
parent
49046db4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
15 deletions
+3
-15
main.js
tinawebJS/main.js
+0
-12
sigmaUtils.js
tinawebJS/sigmaUtils.js
+3
-3
No files found.
tinawebJS/main.js
View file @
2232005f
...
...
@@ -15,7 +15,6 @@ TW.gexfPaths={}; // for file selectors iff servermenu
TW
.
categories
=
[];
// possible node types and their inverted map
TW
.
catDict
=
{};
// a system state is the summary of tina situation
TW
.
initialSystemState
=
{
activetypes
:
[],
// <== filled from TW.categories
...
...
@@ -590,17 +589,6 @@ function mainStartGraph(inFormat, inData, twInstance) {
}
// load optional modules
activateModules
()
;
// show any already existing panel
document
.
getElementById
(
"graph-panels"
).
style
.
display
=
"block"
// grey message in the search bar from settings
$
(
"#searchinput"
).
attr
(
'placeholder'
,
TW
.
conf
.
strSearchBar
)
;
setTimeout
(
function
()
{
theHtml
.
classList
.
remove
(
'waiting'
)
},
20
)
...
...
tinawebJS/sigmaUtils.js
View file @
2232005f
...
...
@@ -620,11 +620,11 @@ function find(lquery){
}
function
getNodeLabels
(
elems
){
var
labels
s
=
[]
var
labels
=
[]
for
(
let
i
in
elems
){
labels
s
.
push
(
TW
.
Nodes
[
elems
[
i
]].
label
)
labels
.
push
(
TW
.
Nodes
[
elems
[
i
]].
label
)
}
return
labels
s
return
labels
}
function
getSelections
(){
...
...
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