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
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9a1ca575
Commit
9a1ca575
authored
Sep 21, 2017
by
Winnie Hellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace @click/@submit with v-on in HAML
parent
92bb6f53
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
app/views/shared/boards/_switcher.html.haml
app/views/shared/boards/_switcher.html.haml
+7
-7
app/views/shared/boards/components/_form.html.haml
app/views/shared/boards/components/_form.html.haml
+5
-5
No files found.
app/views/shared/boards/_switcher.html.haml
View file @
9a1ca575
...
...
@@ -6,7 +6,7 @@
":current-board"
=>
current_board_json
,
"milestone-path"
=>
milestones_filter_path
(
milestone_filter_opts
)
}
.dropdown
%button
.dropdown-menu-toggle
{
"
@
click"
=>
"loadBoards"
,
%button
.dropdown-menu-toggle
{
"
v-on:
click"
=>
"loadBoards"
,
data:
{
toggle:
"dropdown"
}
}
{{ board.name }}
=
icon
(
"chevron-down"
)
...
...
@@ -14,7 +14,7 @@
.dropdown-title
%button
.dropdown-title-button.dropdown-menu-back
{
type:
"button"
,
aria:
{
label:
"Go back"
},
"
@
click.stop.prevent"
=>
"showPage('')"
,
"
v-on:
click.stop.prevent"
=>
"showPage('')"
,
"v-if"
=>
"currentPage !== ''"
}
=
icon
(
"arrow-left"
)
{{ title }}
...
...
@@ -45,23 +45,23 @@
method: :delete
do
Delete
%button
.btn.btn-default.pull-right
{
type:
"button"
,
"
@
click.stop.prevent"
=>
"showPage('')"
}
"
v-on:
click.stop.prevent"
=>
"showPage('')"
}
Cancel
-
if
can?
(
current_user
,
:admin_board
,
parent
)
.dropdown-footer
{
"v-if"
=>
"currentPage === ''"
}
%ul
.dropdown-footer-list
-
if
parent
.
feature_available?
(
:multiple_issue_boards
)
%li
%a
{
"href"
=>
"#"
,
"
@
click.stop.prevent"
=>
"showPage('new')"
}
%a
{
"href"
=>
"#"
,
"
v-on:
click.stop.prevent"
=>
"showPage('new')"
}
Create new board
%li
%a
{
"href"
=>
"#"
,
"
@
click.stop.prevent"
=>
"showPage('edit')"
}
%a
{
"href"
=>
"#"
,
"
v-on:
click.stop.prevent"
=>
"showPage('edit')"
}
Edit board name
-
if
parent
.
issue_board_milestone_available?
(
current_user
)
%li
%a
{
"href"
=>
"#"
,
"
@
click.stop.prevent"
=>
"showPage('milestone')"
}
%a
{
"href"
=>
"#"
,
"
v-on:
click.stop.prevent"
=>
"showPage('milestone')"
}
Edit board milestone
%li
{
"v-if"
=>
"showDelete"
}
%a
{
"href"
=>
"#"
,
"
@
click.stop.prevent"
=>
"showPage('delete')"
}
%a
{
"href"
=>
"#"
,
"
v-on:
click.stop.prevent"
=>
"showPage('delete')"
}
%span
.text-danger
Delete board
app/views/shared/boards/components/_form.html.haml
View file @
9a1ca575
.board-selector-page-two
%form
{
"
@
submit.prevent"
=>
"submit"
}
%form
{
"
v-on:
submit.prevent"
=>
"submit"
}
.dropdown-content
%input
{
type:
"hidden"
,
id:
"board-milestone"
,
...
...
@@ -16,7 +16,7 @@
%label
.label-light
{
for:
"board-milestone"
}
Board milestone
%button
.dropdown-menu-toggle.wide
{
type:
"button"
,
"
@
click.stop.prevent"
=>
"loadMilestones($event)"
}
"
v-on:
click.stop.prevent"
=>
"loadMilestones($event)"
}
{{ milestoneToggleText }}
=
icon
(
"chevron-down"
)
.dropdown-menu.dropdown-menu-selectable
{
"v-if"
=>
"milestoneDropdownOpen"
,
...
...
@@ -26,13 +26,13 @@
%li
{
"v-for"
=>
"milestone in extraMilestones"
}
%a
{
href:
"#"
,
":class"
=>
"{ 'is-active': milestone.id === board.milestone_id }"
,
"
@
click.stop.prevent"
=>
"selectMilestone(milestone)"
}
"
v-on:
click.stop.prevent"
=>
"selectMilestone(milestone)"
}
{{ milestone.title }}
%li
.divider
%li
{
"v-for"
=>
"milestone in milestones"
}
%a
{
href:
"#"
,
":class"
=>
"{ 'is-active': milestone.id === board.milestone_id }"
,
"
@
click.stop.prevent"
=>
"selectMilestone(milestone)"
}
"
v-on:
click.stop.prevent"
=>
"selectMilestone(milestone)"
}
{{ milestone.title }}
=
dropdown_loading
%span
...
...
@@ -47,5 +47,5 @@
"ref"
=>
"'submit-btn'"
}
{{ buttonText }}
%button
.btn.btn-default.pull-right
{
type:
"button"
,
"
@
click.stop.prevent"
=>
"cancel"
}
"
v-on:
click.stop.prevent"
=>
"cancel"
}
Cancel
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