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
643fe43d
Commit
643fe43d
authored
Apr 11, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Addressed feedback
Removed important from css
parent
1ca627f7
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
16 deletions
+19
-16
app/assets/javascripts/gl_dropdown.js.coffee
app/assets/javascripts/gl_dropdown.js.coffee
+5
-5
app/assets/stylesheets/pages/merge_requests.scss
app/assets/stylesheets/pages/merge_requests.scss
+3
-2
app/views/projects/merge_requests/_new_compare.html.haml
app/views/projects/merge_requests/_new_compare.html.haml
+3
-2
app/views/shared/issuable/_form.html.haml
app/views/shared/issuable/_form.html.haml
+8
-6
features/steps/project/source/browse_files.rb
features/steps/project/source/browse_files.rb
+0
-1
No files found.
app/assets/javascripts/gl_dropdown.js.coffee
View file @
643fe43d
...
...
@@ -61,7 +61,7 @@ class GitLabDropdownFilter
if
data
?
results
=
data
if
search_text
isnt
""
if
search_text
isnt
''
results
=
fuzzaldrinPlus
.
filter
(
data
,
search_text
,
key
:
@
options
.
keys
)
...
...
@@ -139,7 +139,7 @@ class GitLabDropdown
if
_
.
isString
(
@
filterInput
)
@
filterInput
=
@
getElement
(
@
filterInput
)
search
_f
ields
=
if
@
options
.
search
then
@
options
.
search
.
fields
else
[];
search
F
ields
=
if
@
options
.
search
then
@
options
.
search
.
fields
else
[];
if
@
options
.
data
# If data is an array
...
...
@@ -163,11 +163,11 @@ class GitLabDropdown
filterInputBlur
:
@
filterInputBlur
remote
:
@
options
.
filterRemote
query
:
@
options
.
data
keys
:
search
_f
ields
keys
:
search
F
ields
elements
:
=>
selector
=
".dropdown-content li:not(.divider)"
selector
=
'.dropdown-content li:not(.divider)'
if
@
dropdown
.
find
(
".dropdown-toggle-page"
).
length
if
@
dropdown
.
find
(
'.dropdown-toggle-page'
).
length
selector
=
".dropdown-page-one
#{
selector
}
"
return
$
(
selector
)
...
...
app/assets/stylesheets/pages/merge_requests.scss
View file @
643fe43d
...
...
@@ -258,6 +258,7 @@
}
}
.merge-request-form
.select2-container
{
width
:
250px
!
important
;
.issuable-form-select-holder
{
display
:
inline-block
;
width
:
250px
;
}
app/views/projects/merge_requests/_new_compare.html.haml
View file @
643fe43d
...
...
@@ -16,9 +16,10 @@
=
dropdown_title
(
"Select source project"
)
=
dropdown_filter
(
"Search projects"
)
=
dropdown_content
do
-
is_active
=
f
.
object
.
source_project_id
==
@merge_request
.
source_project
.
id
%ul
%li
%a
{
href:
"#"
,
class:
"#{("
is
-
active
" if
f.object.source_project_id == @merge_request.source_project.id
)}"
,
data:
{
id:
@merge_request
.
source_project
.
id
}
}
%a
{
href:
"#"
,
class:
"#{("
is
-
active
" if
is_active
)}"
,
data:
{
id:
@merge_request
.
source_project
.
id
}
}
=
@merge_request
.
source_project_path
.merge-request-select.dropdown
=
f
.
hidden_field
:source_branch
...
...
@@ -33,7 +34,7 @@
%a
{
href:
"#"
,
class:
"#{("
is
-
active
" if f.object.source_branch == branch)}"
,
data:
{
id:
branch
}
}
=
branch
.panel-footer
=
icon
(
'spinner spin'
,
class:
"js-source-loading"
)
=
icon
(
'spinner spin'
,
class:
'js-source-loading'
)
%ul
.list-unstyled.mr_source_commit
.col-md-6
...
...
app/views/shared/issuable/_form.html.haml
View file @
643fe43d
...
...
@@ -53,10 +53,11 @@
.issue-assignee
=
f
.
label
:assignee_id
,
"Assignee"
,
class:
'control-label'
.col-sm-10
=
users_select_tag
(
"
#{
issuable
.
class
.
model_name
.
param_key
}
[assignee_id]"
,
placeholder:
'Select assignee'
,
class:
'custom-form-control'
,
null_user:
true
,
selected:
issuable
.
assignee_id
,
project:
@target_project
||
@project
,
first_user:
true
,
current_user:
true
,
include_blank:
true
)
.issuable-form-select-holder
=
users_select_tag
(
"
#{
issuable
.
class
.
model_name
.
param_key
}
[assignee_id]"
,
placeholder:
'Select assignee'
,
class:
'custom-form-control'
,
null_user:
true
,
selected:
issuable
.
assignee_id
,
project:
@target_project
||
@project
,
first_user:
true
,
current_user:
true
,
include_blank:
true
)
=
link_to
'Assign to me'
,
'#'
,
class:
'btn assign-to-me-link'
.form-group
...
...
@@ -64,8 +65,9 @@
=
f
.
label
:milestone_id
,
"Milestone"
,
class:
'control-label'
.col-sm-10
-
if
milestone_options
(
issuable
).
present?
=
f
.
select
(
:milestone_id
,
milestone_options
(
issuable
),
{
include_blank:
true
},
{
class:
'select2'
,
data:
{
placeholder:
'Select milestone'
}
})
.issuable-form-select-holder
=
f
.
select
(
:milestone_id
,
milestone_options
(
issuable
),
{
include_blank:
true
},
{
class:
'select2'
,
data:
{
placeholder:
'Select milestone'
}
})
-
else
.prepend-top-10
%span
.light
No open milestones available.
...
...
features/steps/project/source/browse_files.rb
View file @
643fe43d
...
...
@@ -219,7 +219,6 @@ class Spinach::Features::ProjectSourceBrowseFiles < Spinach::FeatureSteps
step
'I see Browse code link'
do
expect
(
page
).
to
have_link
'Browse Files'
# expect(page).not_to have_link 'Browse File'
expect
(
page
).
not_to
have_link
'Browse Directory »'
end
...
...
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