Compare commits

7 Commits

Author SHA1 Message Date
Gabriele Cirulli 478b6ec346 Update README.md 2024-10-24 15:06:19 +02:00
Gabriele Cirulli fc1ef4fe5a Remove Adsense code 2018-10-27 18:25:12 +02:00
Gabriele Cirulli ffa8559d62 Add AdSense code 2018-10-27 13:21:45 +02:00
Anna Harren ac03b1f016 Merge pull request #463 from marvin08/master
Update main.scss (Add missing semicolon)
2017-10-06 07:36:36 +02:00
Akshay Shrimali 8ae5ccd1e0 Update main.scss 2017-10-01 00:31:17 +05:30
sigod d39dcf7944 Merge pull request #444 from jnohavica/edge-support
Call window.localStorage moved into try catch
2017-06-06 15:24:21 +03:00
Jan Nohavica 163e48088a Call window.localStorage moved into try catch due to possibly exception in Edge. 2017-01-25 23:03:01 +01:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# 2048
A small clone of [1024](https://play.google.com/store/apps/details?id=com.veewo.a1024), based on [Saming's 2048](http://saming.fr/p/2048/) (also a clone).
A small clone of [1024](https://play.google.com/store/apps/details?id=com.veewo.a1024), based on [Saming's 2048](http://saming.fr/p/2048/) (also a clone). 2048 was indirectly inspired by [Threes](https://asherv.com/threes/).
Made just for fun. [Play it here!](http://gabrielecirulli.github.io/2048/)
+1 -1
View File
@@ -28,9 +28,9 @@ function LocalStorageManager() {
LocalStorageManager.prototype.localStorageSupported = function () {
var testKey = "test";
var storage = window.localStorage;
try {
var storage = window.localStorage;
storage.setItem(testKey, "1");
storage.removeItem(testKey);
return true;
+1 -1
View File
@@ -111,7 +111,7 @@ h1.title {
}
.best-container:after {
content: "Best"
content: "Best";
}
p {