Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 478b6ec346 | |||
| fc1ef4fe5a | |||
| ffa8559d62 | |||
| ac03b1f016 | |||
| 8ae5ccd1e0 | |||
| d39dcf7944 | |||
| 163e48088a |
@@ -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/)
|
||||
|
||||
|
||||
@@ -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
@@ -111,7 +111,7 @@ h1.title {
|
||||
}
|
||||
|
||||
.best-container:after {
|
||||
content: "Best"
|
||||
content: "Best";
|
||||
}
|
||||
|
||||
p {
|
||||
|
||||
Reference in New Issue
Block a user