This repository was archived by the owner on Aug 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 156
Recent docs #92
Closed
Closed
Recent docs #92
Changes from 29 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
1ab38e1
Store recent files in config
cicithesquirrel a9c98ee
Added submenu for recent docs
cicithesquirrel 66339d2
Added TODO
cicithesquirrel 42742ca
Added TODO
cicithesquirrel 76ab14a
Added MacOS and Winsows integration
cicithesquirrel 5468543
Fix: bad "require"
cicithesquirrel 016b982
Recent docs are now stored in the browser localStorage
cicithesquirrel 7b4bad8
(beginning) update the recent-docs menu
cicithesquirrel 1f8543b
Update windows' menus
cicithesquirrel ed46e67
Clear and recrate the "recent docs" menu
cicithesquirrel ad3a65c
Removed console log
cicithesquirrel 49fc653
Update "recent docs" menu on when the window is opened
cicithesquirrel 026267b
Removed unused code
cicithesquirrel 2be8edc
Re-open a recent file
cicithesquirrel 1d04673
Remove max-recent config value
cicithesquirrel 33c8ff8
Clear recent docs (beginning)
cicithesquirrel 190b823
Remove console log
cicithesquirrel 1e119ef
Clearing the recent docs menu
cicithesquirrel 9c4f91f
Update recent paths menu when selecting one of the recent files
cicithesquirrel 5b01ed6
Fix: Error when closing document on empty window & when opening file …
cicithesquirrel b076fb2
Fix: Label of menu "File > Recent > Clear"
cicithesquirrel 73f4b69
Enhance comment
cicithesquirrel e5f5c6b
Moved TODO
cicithesquirrel 38a6999
Remove comments
cicithesquirrel 21f4780
Better way of getting the config
cicithesquirrel de8881c
Use global localStorage
cicithesquirrel 99d9bdb
Fix: debug is always enabled
cicithesquirrel d5af0df
Change "max-recent" location in config
cicithesquirrel 8cfab90
No need to get config
cicithesquirrel 8311eb7
Remove unused parameter
cicithesquirrel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ | |
var AbrDocument = require.main.require("./abr-document.js"); | ||
|
||
$( function () { | ||
var abrDoc = new AbrDocument(); | ||
var abrDoc = new AbrDocument(localStorage); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good! Don't forget this one. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, I missed that one... Fixed. |
||
window.abrDoc = abrDoc; | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here, I could use the "i18n" branch (still to me merged "develop") to i18nize the "Clear" menu label.