aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/misc
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/misc')
-rw-r--r--client/src/app/shared/misc/utils.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/client/src/app/shared/misc/utils.ts b/client/src/app/shared/misc/utils.ts
index b1d1fc0b5..096fd61e2 100644
--- a/client/src/app/shared/misc/utils.ts
+++ b/client/src/app/shared/misc/utils.ts
@@ -4,6 +4,10 @@ import { DatePipe } from '@angular/common'
4import { environment } from '../../../environments/environment' 4import { environment } from '../../../environments/environment'
5import { AuthService } from '../../core/auth' 5import { AuthService } from '../../core/auth'
6 6
7type ElementEvent = Omit<Event, 'target'> & {
8 target: HTMLElement
9}
10
7function getParameterByName (name: string, url: string) { 11function getParameterByName (name: string, url: string) {
8 if (!url) url = window.location.href 12 if (!url) url = window.location.href
9 name = name.replace(/[\[\]]/g, '\\$&') 13 name = name.replace(/[\[\]]/g, '\\$&')
@@ -190,6 +194,7 @@ function isXPercentInViewport (el: HTMLElement, percentVisible: number) {
190} 194}
191 195
192export { 196export {
197 ElementEvent,
193 sortBy, 198 sortBy,
194 durationToString, 199 durationToString,
195 lineFeedToHtml, 200 lineFeedToHtml,