Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dariah
search-commons-webresources
Commits
ce0cb3b7
Commit
ce0cb3b7
authored
May 10, 2018
by
Gradl, Tobias
Browse files
1005: Visualize coherence within individual group
Task-Url:
https://pm.winseda.de/issues/1005
parent
c58190ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
js/groupview.js
View file @
ce0cb3b7
...
...
@@ -73,7 +73,12 @@ GroupView.prototype.loadSignificantTerms = function() {
url
:
__util
.
composeUrl
(
"
groups/
"
+
_this
.
groupId
+
"
/significantTerms?size=
"
+
_this
.
options
.
wordcloud
.
tagcount
),
type
:
"
GET
"
,
dataType
:
"
json
"
,
success
:
function
(
data
)
{
_this
.
fillSignificantTerms
(
data
);
},
success
:
function
(
data
)
{
if
(
data
!=
null
&&
data
!=
undefined
&&
data
.
length
>
0
)
{
$
(
"
#significant-terms-cloud
"
).
show
();
_this
.
fillSignificantTerms
(
data
);
}
},
error
:
__util
.
processServerError
});
};
...
...
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