Skip to content

Commit

Permalink
Include description by default and open in new window. See #133
Browse files Browse the repository at this point in the history
  • Loading branch information
breyten committed Apr 3, 2024
1 parent bd4124e commit 5cf1528
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AddColumnBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
</select>
</div>
<div class="cell cell-auto-flex flexy">
<a href="{$searchFeedUrl}" id="rss-button mdc-button" class="subscribe-button mdc-button">RSS</a>
<a href="{$searchFeedUrl}" target="_blank" id="rss-button mdc-button" class="subscribe-button mdc-button">RSS</a>
</div>
<div class="cell cell-auto-flex flexy">
<Button class="subscribe-button input-full-width" style="width: 100%" on:click={(e) => handleSubscription(e)}>Maak alert aan</Button>
Expand Down
2 changes: 1 addition & 1 deletion src/stores.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const apiDomainName = 'api.' + domainName;
export const testDomainName = 'test.' + domainName;

export const searchUrl = writable('');
export const searchFeedUrl = derived(searchUrl, $searchUrl => $searchUrl + '&format=feed');
export const searchFeedUrl = derived(searchUrl, $searchUrl => $searchUrl + '&excludes=&format=feed');

//export const isTesting = readable((window.location.hostname == testDomainName));
export const identity = writable(false);
Expand Down

0 comments on commit 5cf1528

Please sign in to comment.