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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
5d2e637c
Commit
5d2e637c
authored
Dec 30, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Group selectbox js
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
27ee0fc5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
app/assets/javascripts/groups_select.js.coffee
app/assets/javascripts/groups_select.js.coffee
+41
-0
No files found.
app/assets/javascripts/groups_select.js.coffee
0 → 100644
View file @
5d2e637c
class
@
GroupsSelect
constructor
:
->
$
(
'.ajax-groups-select'
).
each
(
i
,
select
)
=>
skip_ldap
=
$
(
select
).
hasClass
(
'skip_ldap'
)
$
(
select
).
select2
placeholder
:
"Search for a group"
multiple
:
$
(
select
).
hasClass
(
'multiselect'
)
minimumInputLength
:
0
query
:
(
query
)
->
Api
.
groups
query
.
term
,
skip_ldap
,
(
groups
)
->
data
=
{
results
:
groups
}
query
.
callback
(
data
)
initSelection
:
(
element
,
callback
)
->
id
=
$
(
element
).
val
()
if
id
isnt
""
Api
.
group
(
id
,
callback
)
formatResult
:
(
args
...)
=>
@
formatResult
(
args
...)
formatSelection
:
(
args
...)
=>
@
formatSelection
(
args
...)
dropdownCssClass
:
"ajax-groups-dropdown"
escapeMarkup
:
(
m
)
->
# we do not want to escape markup since we are displaying html in results
m
formatResult
:
(
group
)
->
if
group
.
avatar_url
avatar
=
group
.
avatar_url
else
avatar
=
gon
.
default_avatar_url
"<div class='group-result'>
<div class='group-name'>
#{
group
.
name
}
</div>
<div class='group-path'>
#{
group
.
path
}
</div>
</div>"
formatSelection
:
(
group
)
->
group
.
name
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