├── Guide_News_Privacy.js ├── Info.html ├── Result_Info_Profile.js ├── Guide_Map_Script.html ├── Map_Guide.html └── About_Search.html /Guide_News_Privacy.js: -------------------------------------------------------------------------------- 1 | console.log('Random JS commit'); -------------------------------------------------------------------------------- /Info.html: -------------------------------------------------------------------------------- 1 |

Hello, World!

-------------------------------------------------------------------------------- /Result_Info_Profile.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Guide_Map_Script.html: -------------------------------------------------------------------------------- 1 |

Hello, World!

-------------------------------------------------------------------------------- /Map_Guide.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

-------------------------------------------------------------------------------- /About_Search.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

--------------------------------------------------------------------------------