Skip to content

Commit

Permalink
const in popup.js
Browse files Browse the repository at this point in the history
  • Loading branch information
docentYT committed Sep 23, 2023
1 parent 782db15 commit 039a577
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions extensions/combined/src/popup/popup.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
"use strict";
document.addEventListener("DOMContentLoaded", async function () {
let plusInput = document.getElementById("plus");
let minusInput = document.getElementById("minus");
let tylkoLiczDoSredniej = document.getElementById("tylkoLiczDoSredniej");
let schowajZachowanie = document.getElementById("schowajZachowanie");
let ignoreCorrectedGrades = document.getElementById("ignoreCorrectedGrades");
let nextWeekAtWeekend = document.getElementById("nextWeekAtWeekend");
let submitButton = document.getElementById("submit");
const plusInput = document.getElementById("plus");

This comment has been minimized.

Copy link
@EnterVPL

EnterVPL Sep 27, 2023

jeśli chcesz sobie to skrócić, to możesz utworzyć taki alias:

const elemById = document.getElementById;

wtedy elemById() będzie działać tak samo jak document.getElementById() bo to będzie to samo

This comment has been minimized.

Copy link
@EnterVPL

EnterVPL Sep 27, 2023

Możesz jeszcze inaczej:

const $ = document.querySelector;

wtedy stała $ będzie działać jak document.querySelector, jak coś to często tak sie skraca. Polecam używać querySelector bo jest uniwersalny

This comment has been minimized.

Copy link
@docentYT

docentYT Sep 27, 2023

Author Owner

Zerkniesz? Nowy commit.

Musiałem zrobić const $ = document.querySelector.bind(document); zamiast const $ = document.querySelector; bo inaczej otrzymywałem błąd: Stack Overflow.

const minusInput = document.getElementById("minus");
const tylkoLiczDoSredniej = document.getElementById("tylkoLiczDoSredniej");
const schowajZachowanie = document.getElementById("schowajZachowanie");
const ignoreCorrectedGrades = document.getElementById("ignoreCorrectedGrades");
const nextWeekAtWeekend = document.getElementById("nextWeekAtWeekend");
const submitButton = document.getElementById("submit");

plusInput.value = await getData("plus");
minusInput.value = await getData("minus");
Expand Down

0 comments on commit 039a577

Please sign in to comment.