Skip to content

Commit

Permalink
Dev: Add length restriction to localStorage value
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Apr 1, 2016
1 parent 0f61d5b commit 897963f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/Resources.es6
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default class Resources extends Tool
{
localStoreData.push({
key: key,
val: val
val: val.slice(0, 500)
});
});

Expand Down

0 comments on commit 897963f

Please sign in to comment.