This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const WDS_sidebanner = { | |
lifeHour: 1, | |
mSecondAnHour: 3600000, | |
mSecondToNow: new Date().getTime(), | |
expDateTime() { | |
return this.mSecondToNow + (this.lifeHour * this.mSecondAnHour) | |
}, | |
createSideBanner(sideBannerData) { | |
const sideBanner = document.createElement('div'); | |
const bannerClosingButton = document.createElement('span'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Simple Modal</title> | |
<link rel="stylesheet" href="public/stylesheets/modal.css"> | |
<script src="public/javascripts/modalWindowCreator.js"></script> | |
</head> | |
<body> | |
<button onclick="modalWindowCreator()">JUST CREATE</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a(); | |
let test =()=>{ | |
return new Promise((res,rej)=>{ | |
setTimeout(()=>{ | |
res('Time is out!') | |
},5000) | |
}) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function migratoryBirds(arr=[1,2,3,4,5,4,3,2,1,3,4]) { | |
let typesOccurs = {}; | |
arr.forEach(item=>{ | |
if(typesOccurs[item]){ | |
typesOccurs[item]=Number(typesOccurs[item])+1 | |
}else{ | |
typesOccurs[item]=1 | |
} | |
}); | |
console.log(typesOccurs); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const WDC_box = { | |
expDateTime(lifeHour) { | |
return new Date().getTime() + (lifeHour * 3600000) | |
}, | |
vw() { | |
return Math.min(document.documentElement.clientWidth, window.innerWidth) | |
}, | |
vh() { | |
return Math.min(document.documentElement.clientHeight, window.innerHeight) | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const WDS_modal = { | |
lifeHour: 1, | |
mSecondAnHour: 3600000, | |
mSecondToNow: new Date().getTime(), | |
expDateTime (){return this.mSecondToNow + (this.lifeHour * this.mSecondAnHour)}, | |
createModal(modalData){ | |
const backDrop = document.createElement('div'); | |
const modal = document.createElement('div'); | |
const modalClosingButton = document.createElement('span'); | |
backDrop.id = "modal_"+ modalData.content_id.toString(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function compile(){ | |
let payload ={curPageNumber:1, thisPagesImageList:[], maxPageNumber:2}; | |
let curPageNumber=0; | |
let maxPageNumber=1; | |
let imgList=[]; | |
while(curPageNumber<=maxPageNumber){ | |
let returnedObject = await linkInPage(payload); | |
curPageNumber = parseInt(returnedObject.curPageNumber); | |
maxPageNumber = parseInt(returnedObject.maxPageNumber); | |
imgList = imgList.concat(returnedObject.thisPagesImageList); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chrome.tabs.insertCSS({file:'dark.css'}); |