-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Amazing new stuff! (Read description of commit!)
Faster loading times! SnailFM is slow? Not anymore! A inbuilt reset option (in settings), Delete SnailFM and reset it up! A built in welcome screen! Welcome new people! Brand new CSS! New update system! Amazing new colours and styles New dependencies! New splash! New render system! Let's go!
- Loading branch information
Showing
9 changed files
with
319 additions
and
11 deletions.
There are no files selected for viewing
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log("Renderer.JS is initialized!") |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<!DOCTYPE html> | ||
<meta charset="UTF-8"> | ||
<html> | ||
<head> | ||
<script> | ||
window.jQuery = window.$ = require('jquery'); | ||
</script> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> | ||
<title>Resetting SnailFM--- </title> | ||
<style type="text/css"> | ||
.bs-example{ | ||
margin: 20px; | ||
} | ||
</style> | ||
<style> | ||
body { | ||
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); | ||
background-size: 400% 400%; | ||
animation: gradient 15s ease infinite; | ||
} | ||
|
||
@keyframes gradient { | ||
0% { | ||
background-position: 0% 50%; | ||
} | ||
50% { | ||
background-position: 100% 50%; | ||
} | ||
100% { | ||
background-position: 0% 50%; | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<script> | ||
console.log("Let's clear localstorage first...") | ||
localStorage.removeItem('cookie-consent', 'true'); | ||
console.log("Just wait a bit...") | ||
// import rest of stuff here | ||
</script> | ||
<div class="bs-example"> | ||
<h2>Resetting SnailFM...</h2> | ||
<div class="progress"> | ||
<div class="progress-bar" id="bar"> | ||
<span class="sr-only">src</span> | ||
</div> | ||
</div> | ||
<script type="text/javascript"> | ||
var i = 0; | ||
var progressBar = $("#bar"); | ||
function countNumbers(){ | ||
if(i < 100){ | ||
i = i + 10; | ||
progressBar.css("width", i + "%"); | ||
} | ||
if(i > 90){ | ||
window.location.href = "restart.html"; | ||
} | ||
// Wait for sometime before running this script again | ||
setTimeout("countNumbers()", 1000); | ||
} | ||
countNumbers(); | ||
</script> | ||
</div> | ||
</body> | ||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<html> | ||
<head> | ||
<title>Reset sucess</title> | ||
</head> | ||
<body> | ||
<h1> Reset Sucess </h1> | ||
<h2> Please hit the exit button and start SnailFM again...</h2> | ||
<button id="exit" onclick="window.close()">Exit</button> | ||
</body> | ||
</html> |
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
Oops, something went wrong.
5a307c9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yay :p