BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
52e652cb
Commit
52e652cb
authored
Jan 18, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'rs-data_attribute-cleanup' into 'master'
Correct documentation for `data_attribute` method See merge request !8603
parents
f208897c
959f65a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
reference_filter.rb
lib/banzai/filter/reference_filter.rb
+5
-3
No files found.
lib/banzai/filter/reference_filter.rb
View file @
52e652cb
...
@@ -20,10 +20,10 @@ module Banzai
...
@@ -20,10 +20,10 @@ module Banzai
# Examples:
# Examples:
#
#
# data_attribute(project: 1, issue: 2)
# data_attribute(project: 1, issue: 2)
# # => "data-reference-
filter
=\"SomeReferenceFilter\" data-project=\"1\" data-issue=\"2\""
# # => "data-reference-
type
=\"SomeReferenceFilter\" data-project=\"1\" data-issue=\"2\""
#
#
# data_attribute(project: 3, merge_request: 4)
# data_attribute(project: 3, merge_request: 4)
# # => "data-reference-
filter
=\"SomeReferenceFilter\" data-project=\"3\" data-merge-request=\"4\""
# # => "data-reference-
type
=\"SomeReferenceFilter\" data-project=\"3\" data-merge-request=\"4\""
#
#
# Returns a String
# Returns a String
def
data_attribute
(
attributes
=
{})
def
data_attribute
(
attributes
=
{})
...
@@ -31,7 +31,9 @@ module Banzai
...
@@ -31,7 +31,9 @@ module Banzai
attributes
[
:reference_type
]
||=
self
.
class
.
reference_type
attributes
[
:reference_type
]
||=
self
.
class
.
reference_type
attributes
.
delete
(
:original
)
if
context
[
:no_original_data
]
attributes
.
delete
(
:original
)
if
context
[
:no_original_data
]
attributes
.
map
{
|
key
,
value
|
%Q(data-
#{
key
.
to_s
.
dasherize
}
="
#{
escape_once
(
value
)
}
")
}.
join
(
" "
)
attributes
.
map
do
|
key
,
value
|
%Q(data-
#{
key
.
to_s
.
dasherize
}
="
#{
escape_once
(
value
)
}
")
end
.
join
(
' '
)
end
end
def
escape_once
(
html
)
def
escape_once
(
html
)
...
...
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