Remove url tag

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-18 14:19:29 +03:00
parent 02faddb6a8
commit 821f442bec
12 changed files with 12 additions and 12 deletions

View File

@ -1,6 +1,6 @@
---
title: currentURL
tags: browser,url,beginner
tags: browser,beginner
---
Returns the current URL.

View File

@ -1,6 +1,6 @@
---
title: getBaseURL
tags: browser,string,url,beginner
tags: browser,string,beginner
---
Returns the current URL without any parameters.

View File

@ -1,6 +1,6 @@
---
title: getURLParameters
tags: browser,string,url,intermediate
tags: browser,string,intermediate
---
Returns an object containing the parameters of the current URL.

View File

@ -1,6 +1,6 @@
---
title: httpDelete
tags: browser,url,intermediate
tags: browser,intermediate
---
Makes a `DELETE` request to the passed URL.

View File

@ -1,6 +1,6 @@
---
title: httpGet
tags: browser,url,intermediate
tags: browser,intermediate
---
Makes a `GET` request to the passed URL.

View File

@ -1,6 +1,6 @@
---
title: httpPost
tags: browser,url,intermediate
tags: browser,intermediate
---
Makes a `POST` request to the passed URL.

View File

@ -1,6 +1,6 @@
---
title: httpPut
tags: browser,url,intermediate
tags: browser,intermediate
---
Makes a `PUT` request to the passed URL.

View File

@ -1,6 +1,6 @@
---
title: httpsRedirect
tags: browser,url,intermediate
tags: browser,intermediate
---
Redirects the page to HTTPS if its currently in HTTP. Also, pressing the back button doesn't take it back to the HTTP page as its replaced in the history.

View File

@ -1,6 +1,6 @@
---
title: isAbsoluteURL
tags: string,browser,url,intermediate
tags: string,browser,intermediate
---
Returns `true` if the given string is an absolute URL, `false` otherwise.

View File

@ -1,6 +1,6 @@
---
title: redirect
tags: browser,url,beginner
tags: browser,beginner
---
Redirects to a specified URL.

View File

@ -1,6 +1,6 @@
---
title: runAsync
tags: browser,function,promise,url,advanced
tags: browser,function,promise,advanced
---
Runs a function in a separate thread by using a [Web Worker](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers), allowing long running functions to not block the UI.

View File

@ -1,6 +1,6 @@
---
title: stableSort
tags: array,sort,advanced,intermediate
tags: array,advanced
---
Performs stable sorting of an array, preserving the initial indexes of items when their values are the same.