Newyn / Matching-fruits--

Create a Bejeweled-like game for FirefoxOS
Other
7 stars 1 forks source link

Add auto incremental id to the score saved in IndexedDB #67

Closed Newyn closed 11 years ago

Newyn commented 11 years ago

In order to save only the 5 last score, it is necessary to add an auto-incremental ID when saving a score in IndexedDB for delete it when it's unnecessary

Yoric commented 11 years ago

Frankly, just save an array to IndexedDB. It's not worth bothering with IDs for just saving 5 numbers.

Newyn commented 11 years ago

Ok i'll do it with an array with a maximum size of 5 elements

Newyn commented 11 years ago

Done.