Code cleaning
This commit is contained in:
parent
5f1e39f123
commit
ea41fb41bf
@ -1,8 +1,3 @@
|
|||||||
var instance;
|
|
||||||
var windowWidth;
|
|
||||||
var windowHeight;
|
|
||||||
var noQueryStrings;
|
|
||||||
|
|
||||||
function onError(error) {
|
function onError(error) {
|
||||||
console.log(`Error: ${error}`);
|
console.log(`Error: ${error}`);
|
||||||
}
|
}
|
||||||
@ -19,16 +14,16 @@ function shareURL(donnees){
|
|||||||
|
|
||||||
browser.storage.local.get(["instance_url","window_width","window_height","remove_querystrings"],function(item){
|
browser.storage.local.get(["instance_url","window_width","window_height","remove_querystrings"],function(item){
|
||||||
|
|
||||||
instance = item["instance_url"];
|
let instance = item["instance_url"];
|
||||||
windowWidth = item["window_width"];
|
let windowWidth = item["window_width"];
|
||||||
windowHeight = item["window_height"];
|
let windowHeight = item["window_height"];
|
||||||
noQueryStrings = item["remove_querystrings"];
|
let noQueryStrings = item["remove_querystrings"];
|
||||||
|
|
||||||
var tab = tabs[0];
|
let tab = tabs[0];
|
||||||
|
|
||||||
// manages Mozilla Firefox reader mode
|
// manages Mozilla Firefox reader mode
|
||||||
var rawUrl = tab.url;
|
let rawUrl = tab.url;
|
||||||
var partToRemove = "about:reader?url=";
|
let partToRemove = "about:reader?url=";
|
||||||
if(rawUrl.includes(partToRemove)) {
|
if(rawUrl.includes(partToRemove)) {
|
||||||
rawUrl = rawUrl.substring(partToRemove.length);
|
rawUrl = rawUrl.substring(partToRemove.length);
|
||||||
rawUrl = decodeURIComponent(rawUrl);
|
rawUrl = decodeURIComponent(rawUrl);
|
||||||
@ -39,7 +34,7 @@ function shareURL(donnees){
|
|||||||
rawUrl = rawUrl.split("?")[0];
|
rawUrl = rawUrl.split("?")[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
var url = instance + "/bookmarks.php?action=add&address=" + encodeURIComponent(rawUrl) + "&title=" + encodeURIComponent(tabs[0].title) + "&description=" + encodeURIComponent(donnees);
|
let url = instance + "/bookmarks.php?action=add&address=" + encodeURIComponent(rawUrl) + "&title=" + encodeURIComponent(tabs[0].title) + "&description=" + encodeURIComponent(donnees);
|
||||||
widthInt = Number(windowWidth);
|
widthInt = Number(windowWidth);
|
||||||
heightInt = Number(windowHeight);
|
heightInt = Number(windowHeight);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user