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
a1d09190
Commit
a1d09190
authored
Mar 25, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent unnecessary doubling of js events on import pages and user calendar
parent
12430b65
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
13 additions
and
22 deletions
+13
-22
CHANGELOG
CHANGELOG
+1
-0
app/views/import/bitbucket/status.html.haml
app/views/import/bitbucket/status.html.haml
+1
-2
app/views/import/github/status.html.haml
app/views/import/github/status.html.haml
+1
-2
app/views/import/gitlab/status.html.haml
app/views/import/gitlab/status.html.haml
+1
-2
app/views/import/gitorious/status.html.haml
app/views/import/gitorious/status.html.haml
+1
-2
app/views/projects/issues/_issue_context.html.haml
app/views/projects/issues/_issue_context.html.haml
+1
-2
app/views/projects/merge_requests/show/_context.html.haml
app/views/projects/merge_requests/show/_context.html.haml
+1
-4
app/views/projects/new.html.haml
app/views/projects/new.html.haml
+5
-6
app/views/users/show.html.haml
app/views/users/show.html.haml
+1
-2
No files found.
CHANGELOG
View file @
a1d09190
...
...
@@ -42,6 +42,7 @@ v 7.10.0 (unreleased)
- Send EmailsOnPush email when branch or tag is created or deleted.
- Faster merge request processing for large repository
- Prevent doubling AJAX request with each commit visit via Turbolink
- Prevent unnecessary doubling of js events on import pages and user calendar
v 7.9.0
- Add HipChat integration documentation (Stan Hu)
...
...
app/views/import/bitbucket/status.html.haml
View file @
a1d09190
...
...
@@ -42,5 +42,4 @@
=
button_tag
"Import"
,
class:
"btn js-add-to-import"
:coffeescript
$ ->
new ImporterStatus("
#{
jobs_import_bitbucket_path
}
", "
#{
import_bitbucket_path
}
")
app/views/import/github/status.html.haml
View file @
a1d09190
...
...
@@ -42,5 +42,4 @@
=
button_tag
"Import"
,
class:
"btn js-add-to-import"
:coffeescript
$ ->
new ImporterStatus("
#{
jobs_import_github_path
}
", "
#{
import_github_path
}
")
app/views/import/gitlab/status.html.haml
View file @
a1d09190
...
...
@@ -42,5 +42,4 @@
=
button_tag
"Import"
,
class:
"btn js-add-to-import"
:coffeescript
$ ->
new ImporterStatus("
#{
jobs_import_gitlab_path
}
", "
#{
import_gitlab_path
}
")
app/views/import/gitorious/status.html.haml
View file @
a1d09190
...
...
@@ -42,5 +42,4 @@
=
button_tag
"Import"
,
class:
"btn js-add-to-import"
:coffeescript
$ ->
new ImporterStatus("
#{
jobs_import_gitorious_path
}
", "
#{
import_gitorious_path
}
")
app/views/projects/issues/_issue_context.html.haml
View file @
a1d09190
...
...
@@ -43,7 +43,6 @@
You're receiving notifications because you're subscribed to this thread.
:coffeescript
$ ->
new Subscription("
#{
toggle_subscription_namespace_project_issue_path
(
@issue
.
project
.
namespace
,
@project
,
@issue
)
}
")
app/views/projects/merge_requests/show/_context.html.haml
View file @
a1d09190
...
...
@@ -45,7 +45,4 @@
You're receiving notifications because you're subscribed to this thread.
:coffeescript
$ ->
new Subscription("
#{
toggle_subscription_namespace_project_merge_request_path
(
@merge_request
.
project
.
namespace
,
@project
,
@merge_request
)
}
")
\ No newline at end of file
app/views/projects/new.html.haml
View file @
a1d09190
...
...
@@ -109,7 +109,6 @@
%p
Please wait a moment, this page will automatically refresh when ready.
:coffeescript
$ ->
$('.how_to_import_link').bind 'click', (e) ->
e.preventDefault()
import_modal = $(this).next(".modal").show()
...
...
app/views/users/show.html.haml
View file @
a1d09190
...
...
@@ -47,5 +47,4 @@
=
render
'projects'
:coffeescript
$ ->
$(".user-calendar").load("
#{
user_calendar_path
}
")
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