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
accdcdf8
Commit
accdcdf8
authored
May 27, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:gitlabhq/gitlabhq
parents
28466444
97f9d601
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
CHANGELOG
CHANGELOG
+2
-0
app/assets/javascripts/application.js.coffee
app/assets/javascripts/application.js.coffee
+4
-1
app/assets/javascripts/dispatcher.js.coffee
app/assets/javascripts/dispatcher.js.coffee
+1
-0
No files found.
CHANGELOG
View file @
accdcdf8
...
@@ -5,9 +5,11 @@ v 7.12.0 (unreleased)
...
@@ -5,9 +5,11 @@ v 7.12.0 (unreleased)
- Fix Markdown preview not working in Edit Milestone page (Stan Hu)
- Fix Markdown preview not working in Edit Milestone page (Stan Hu)
- Fix Zen Mode not closing with ESC key (Stan Hu)
- Fix Zen Mode not closing with ESC key (Stan Hu)
- Allow HipChat API version to be blank and default to v2 (Stan Hu)
- Allow HipChat API version to be blank and default to v2 (Stan Hu)
- Add file attachment support in Milestone description (Stan Hu)
- Add web hook support for note events (Stan Hu)
- Add web hook support for note events (Stan Hu)
- Disable "New Issue" and "New Merge Request" buttons when features are disabled in project settings (Stan Hu)
- Disable "New Issue" and "New Merge Request" buttons when features are disabled in project settings (Stan Hu)
- Remove Rack Attack monkey patches and bump to version 4.3.0 (Stan Hu)
- Remove Rack Attack monkey patches and bump to version 4.3.0 (Stan Hu)
- Fix clone URL losing selection after a single click in Safari and Chrome (Stan Hu)
- Allow to configure location of the `.gitlab_shell_secret` file. (Jakub Jirutka)
- Allow to configure location of the `.gitlab_shell_secret` file. (Jakub Jirutka)
- Disabled expansion of top/bottom blobs for new file diffs
- Disabled expansion of top/bottom blobs for new file diffs
- Update Asciidoctor gem to version 1.5.2. (Jakub Jirutka)
- Update Asciidoctor gem to version 1.5.2. (Jakub Jirutka)
...
...
app/assets/javascripts/application.js.coffee
View file @
accdcdf8
...
@@ -116,7 +116,10 @@ window.addEventListener "hashchange", shiftWindow
...
@@ -116,7 +116,10 @@ window.addEventListener "hashchange", shiftWindow
$
->
$
->
# Click a .js-select-on-focus field, select the contents
# Click a .js-select-on-focus field, select the contents
$
(
".js-select-on-focus"
).
on
"focusin"
,
->
$
(
this
).
select
()
$
(
".js-select-on-focus"
).
on
"focusin"
,
->
# Prevent a mouseup event from deselecting the input
$
(
this
).
select
().
one
'mouseup'
,
(
e
)
->
e
.
preventDefault
()
$
(
'.remove-row'
).
bind
'ajax:success'
,
->
$
(
'.remove-row'
).
bind
'ajax:success'
,
->
$
(
this
).
closest
(
'li'
).
fadeOut
()
$
(
this
).
closest
(
'li'
).
fadeOut
()
...
...
app/assets/javascripts/dispatcher.js.coffee
View file @
accdcdf8
...
@@ -27,6 +27,7 @@ class Dispatcher
...
@@ -27,6 +27,7 @@ class Dispatcher
new
Milestone
()
new
Milestone
()
when
'projects:milestones:new'
,
'projects:milestones:edit'
when
'projects:milestones:new'
,
'projects:milestones:edit'
new
ZenMode
()
new
ZenMode
()
new
DropzoneInput
(
$
(
'.milestone-form'
))
when
'projects:compare:show'
when
'projects:compare:show'
new
Diff
()
new
Diff
()
when
'projects:issues:new'
,
'projects:issues:edit'
when
'projects:issues:new'
,
'projects:issues:edit'
...
...
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