Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Nakatai-0322 committed Jan 5, 2022
1 parent ee76b52 commit 0c25ebb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
let accessfrom = "アクセス元ページ:" + location.href;
let resolution = "解像度:" + screen.width + " x " + screen.height;
let browser = "ブラウザー: " + window.navigator.userAgent + " (ver." + window.navigator.appVersion + " )"
const accessfrom = "アクセス元ページ:" + location.href;
const resolution = "解像度:" + screen.width + " x " + screen.height;
const browser = "ブラウザー: " + window.navigator.userAgent + " (ver." + window.navigator.appVersion + " )"

window.onload = function onLoad() {
document.getElementById("out1").innerHTML = accessfrom;
Expand Down

0 comments on commit 0c25ebb

Please sign in to comment.