Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Fix: Scrollbar on screen #116 #117

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
test/unit/coverage/**
test/unit/*.js
test/e2e/*.js
*
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ module.exports = {
"import/extensions": 0,
"import/newline-after-import": 0,
"no-multi-assign": 0,
"linebreak-style:": 0,
// allow debugger during development
"no-debugger": process.env.NODE_ENV === "production" ? 1 : 0
}
Expand Down
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
7 changes: 7 additions & 0 deletions src/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ function createWindow() {
label: 'About Application',
selector: 'orderFrontStandardAboutPanel:',
},
{
label: 'Open DevTools',
accelerator: 'CmdOrCtrl+D',
click: function () {
mainWindow.openDevTools()
}
},
Comment on lines +46 to +52
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please delete these changes?
See #126

{ type: 'separator' },
{
label: 'Quit',
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</div>
</b-modal>

<b-modal :active.sync="helpTokenModalActive" has-modal-card>
<b-modal :active.sync="helpTokenModalActive" has-modal-card scroll="keep">
<cn-help-token-modal></cn-help-token-modal>
</b-modal>
</nav>
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/components/notes-list/NotesList.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ <h2>Sorry, no {{gistsSelected ? 'gist' : 'note'}} found for your search</h2>
</div>
</div>

<b-modal :active.sync="createNoteModalActive" has-modal-card>
<b-modal :active.sync="createNoteModalActive" has-modal-card scroll="keep">
<cn-create-note-modal></cn-create-note-modal>
</b-modal>

<b-modal :active.sync="settingsModalActive" has-modal-card>
<b-modal :active.sync="settingsModalActive" has-modal-card scroll="keep">
<cn-settings-modal></cn-settings-modal>
</b-modal>

<b-modal :active.sync="helpTokenModalActive" has-modal-card>
<b-modal :active.sync="helpTokenModalActive" has-modal-card scroll="keep">
<cn-help-token-modal></cn-help-token-modal>
</b-modal>
</div>
2 changes: 1 addition & 1 deletion src/renderer/components/notes-list/note-card/NoteCard.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h4>{{value.name}}
</div>
</article>

<b-modal :active.sync="updateNoteModalActive" has-modal-card>
<b-modal :active.sync="updateNoteModalActive" has-modal-card scroll="keep">
<cn-update-note-modal :note="note"></cn-update-note-modal>
</b-modal>
</div>