Update hashtags
This commit is contained in:
parent
5c111f86d7
commit
1237e84670
2 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="hashtag2">Hashtag 2:</label>
|
<label for="hashtag2">Hashtag 2:</label>
|
||||||
<input type="text" class="form-control" id="hashtag2" placeholder="Enter a hashtag" value="bdk23">
|
<input type="text" class="form-control" id="hashtag2" placeholder="Enter a hashtag" value="ldk24">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="hashtag3">Hashtag 3:</label>
|
<label for="hashtag3">Hashtag 3:</label>
|
||||||
|
|
|
@ -271,7 +271,7 @@ const handleHashtagDisplayClick = function(serverUrl) {
|
||||||
|
|
||||||
const currentHashtags = getUrlParameter('hashtags').split(',');
|
const currentHashtags = getUrlParameter('hashtags').split(',');
|
||||||
if ( currentHashtags = null ) {
|
if ( currentHashtags = null ) {
|
||||||
currentHasttags = "netzbegruenung,bdk23".split(',')
|
currentHasttags = "netzbegruenung,ldk24".split(',')
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let i = 0; i < currentHashtags.length; i++) {
|
for (let i = 0; i < currentHashtags.length; i++) {
|
||||||
|
@ -322,7 +322,7 @@ $(document).ready(async function() {
|
||||||
|
|
||||||
let hashtags = getUrlParameter('hashtags');
|
let hashtags = getUrlParameter('hashtags');
|
||||||
if ( hashtags == '' ) {
|
if ( hashtags == '' ) {
|
||||||
hashtags = "netzbegruenung,bdk23";
|
hashtags = "netzbegruenung,ldk24";
|
||||||
}
|
}
|
||||||
const hashtagsArray = hashtags ? hashtags.split(',') : [];
|
const hashtagsArray = hashtags ? hashtags.split(',') : [];
|
||||||
const serverUrl = getUrlParameter('server') || defaultServerUrl;
|
const serverUrl = getUrlParameter('server') || defaultServerUrl;
|
||||||
|
|
Loading…
Reference in a new issue