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 title: currentURL
tags: browser,url,beginner tags: browser,beginner
--- ---
Returns the current URL. Returns the current URL.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
--- ---
title: httpsRedirect 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. 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 title: isAbsoluteURL
tags: string,browser,url,intermediate tags: string,browser,intermediate
--- ---
Returns `true` if the given string is an absolute URL, `false` otherwise. Returns `true` if the given string is an absolute URL, `false` otherwise.

View File

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

View File

@ -1,6 +1,6 @@
--- ---
title: runAsync 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. 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 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. Performs stable sorting of an array, preserving the initial indexes of items when their values are the same.