Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
bf02072a
Commit
bf02072a
authored
Mar 06, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Properly handle autosave local storage exceptions.
parent
e916f1c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
CHANGELOG
CHANGELOG
+1
-0
app/assets/javascripts/autosave.js.coffee
app/assets/javascripts/autosave.js.coffee
+9
-3
No files found.
CHANGELOG
View file @
bf02072a
...
@@ -20,6 +20,7 @@ v 7.9.0 (unreleased)
...
@@ -20,6 +20,7 @@ v 7.9.0 (unreleased)
- Add brakeman (security scanner for Ruby on Rails)
- Add brakeman (security scanner for Ruby on Rails)
- Slack username and channel options
- Slack username and channel options
- Add grouped milestones from all projects to dashboard.
- Add grouped milestones from all projects to dashboard.
- Properly handle autosave local storage exceptions.
v 7.8.1
v 7.8.1
- Fix run of custom post receive hooks
- Fix run of custom post receive hooks
...
...
app/assets/javascripts/autosave.js.coffee
View file @
bf02072a
...
@@ -14,7 +14,11 @@ class @Autosave
...
@@ -14,7 +14,11 @@ class @Autosave
restore
:
->
restore
:
->
return
unless
window
.
localStorage
?
return
unless
window
.
localStorage
?
text
=
window
.
localStorage
.
getItem
@
key
try
text
=
window
.
localStorage
.
getItem
@
key
catch
return
@
field
.
val
text
if
text
?
.
length
>
0
@
field
.
val
text
if
text
?
.
length
>
0
@
field
.
trigger
"input"
@
field
.
trigger
"input"
...
@@ -23,11 +27,13 @@ class @Autosave
...
@@ -23,11 +27,13 @@ class @Autosave
text
=
@
field
.
val
()
text
=
@
field
.
val
()
if
text
?
.
length
>
0
if
text
?
.
length
>
0
window
.
localStorage
.
setItem
@
key
,
text
try
window
.
localStorage
.
setItem
@
key
,
text
else
else
@
reset
()
@
reset
()
reset
:
->
reset
:
->
return
unless
window
.
localStorage
?
return
unless
window
.
localStorage
?
window
.
localStorage
.
removeItem
@
key
try
\ No newline at end of file
window
.
localStorage
.
removeItem
@
key
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment