Skip to content

Commit

Permalink
Merge pull request #94 from penge/fix
Browse files Browse the repository at this point in the history
Fix unselected address bar
  • Loading branch information
penge authored Jun 2, 2020
2 parents d3e4455 + 97da54e commit dec1be0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "My Notes",
"description": "Simple note taking.",
"version": "3.0.4",
"version": "3.0.5",
"homepage_url": "https://github.com/penge/my-notes",
"icons": { "128": "images/icon128.png" },
"options_page": "options.html",
Expand All @@ -16,7 +16,7 @@
},
"background": {
"page": "background.html",
"persistent": false
"persistent": true
},
"browser_action": {
"default_icon": "images/icon128.png"
Expand Down
3 changes: 1 addition & 2 deletions notes/view/set-active.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* global document, setTimeout */
/* global document */

import { noteName, noteOptions, content } from "./elements.js";
import { isReserved } from "../reserved.js";
Expand All @@ -11,7 +11,6 @@ export default function setActive(name, html, { renameNote, deleteNote }) {
noteName.classList.toggle("reserved", isReserved(name));

content.innerHTML = html;
content.blur();

attachOptions(name, { noteOptions, renameNote, deleteNote });
}

0 comments on commit dec1be0

Please sign in to comment.