Dev: Add length restriction to localStorage value

This commit is contained in:
surunzi
2016-04-01 14:53:27 +08:00
parent 0f61d5babb
commit 897963ffbe

View File

@@ -96,7 +96,7 @@ export default class Resources extends Tool
{
localStoreData.push({
key: key,
val: val
val: val.slice(0, 500)
});
});