adding my suggestion for the i18n example, and the beginnings of a WebExtension storage example

This commit is contained in:
chrisdavidmills
2016-04-07 13:08:14 +01:00
parent 4c567ae945
commit e03ef78697
12 changed files with 233 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="quicknote.css"/>
</head>
<body>
<div class="outer-wrapper">
<div class="new-note">
<input type="text">
<textarea></textarea>
<button class="clear">Clear notes</button>
<button class="add">Add note</button>
<div class="clearfix"></div>
</div>
<div class="note-container">
</div>
</div>
<script src="quicknote.js"></script>
</body>
</html>