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
Léo-Paul Géneau
gitlab-ce
Commits
55afebe1
Commit
55afebe1
authored
Mar 26, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always display suggestions
parent
47405485
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
25 deletions
+20
-25
app/assets/javascripts/search_autocomplete.js.coffee
app/assets/javascripts/search_autocomplete.js.coffee
+12
-22
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+2
-2
app/assets/stylesheets/pages/search.scss
app/assets/stylesheets/pages/search.scss
+6
-1
No files found.
app/assets/javascripts/search_autocomplete.js.coffee
View file @
55afebe1
...
...
@@ -72,9 +72,6 @@ class @SearchAutocomplete
# Prevent multiple ajax calls
return
if
@
loadingSuggestions
# Do not request suggestions if dropdown is disabled
return
if
@
badgePresent
()
@
loadingSuggestions
=
true
jqXHR
=
$
.
get
(
@
autocompletePath
,
{
...
...
@@ -132,16 +129,12 @@ class @SearchAutocomplete
# No need to enable anything if user is not logged in
return
if
!
gon
.
current_user_id
dropdownMenu
=
@
dropdown
.
find
(
'.dropdown-menu'
)
_this
=
@
@
loadingSuggestions
=
false
@
dropdown
.
addClass
(
'open'
)
@
searchInput
.
removeClass
(
'disabled'
)
onDropdownOpen
:
(
e
)
=>
@
dropdown
.
dropdown
(
'toggle'
)
onSearchInputKeyDown
:
=>
# Saves last length of the entered text
@
saveTextLength
()
...
...
@@ -154,23 +147,20 @@ class @SearchAutocomplete
@
removeLocationBadge
()
# When removing the last character and no badge is present
if
@
lastTextLength
is
1
and
!
@
badgePresent
()
if
@
lastTextLength
is
1
@
disableAutocomplete
()
# When removing any character from existin value
if
@
lastTextLength
>
1
@
enableAutocomplete
()
when
KEYCODE
.
ESCAPE
if
@
badgePresent
()
else
@
restoreOriginalState
()
@
restoreOriginalState
()
# If after restoring there's a badge
@
disableAutocomplete
()
if
@
badgePresent
()
else
if
@
badgePresent
()
@
disableAutocomplete
()
else
# We should display the menu only when input is not empty
if
@
searchInput
.
val
()
isnt
''
@
enableAutocomplete
()
# We should display the menu only when input is not empty
if
@
searchInput
.
val
()
isnt
''
@
enableAutocomplete
()
# Avoid falsy value to be returned
return
...
...
@@ -229,8 +219,8 @@ class @SearchAutocomplete
@
dropdown
.
removeClass
'open'
# Only add class if there's a badge
if
@
badgePresent
()
@
searchInput
.
addClass
'disabled'
#
if @badgePresent()
#
@searchInput.addClass 'disabled'
badgePresent
:
->
@
locationBadgeEl
.
children
().
length
...
...
app/assets/stylesheets/framework/variables.scss
View file @
55afebe1
...
...
@@ -205,5 +205,5 @@ $search-input-width: $dropdown-width;
$location-badge-color
:
#aaa
;
$location-badge-bg
:
$gray-normal
;
$location-icon-color
:
#e7e9ed
;
$location-active-color
:
#7f8fa4
;
$location-active-bg
:
$
location-active
-color
;
$location-active-color
:
$gl-text-color
;
$location-active-bg
:
$
search-input-border
-color
;
app/assets/stylesheets/pages/search.scss
View file @
55afebe1
...
...
@@ -63,6 +63,7 @@
.search-input-container
{
display
:
-
webkit-flex
;
display
:
flex
;
position
:
relative
;
}
.search-location-badge
,
.search-input-wrap
{
...
...
@@ -72,7 +73,6 @@
.search-input-wrap
{
width
:
100%
;
position
:
relative
;
.search-icon
,
.clear-icon
{
position
:
absolute
;
...
...
@@ -100,6 +100,11 @@
display
:
none
;
}
// Rewrite position. Dropdown menu should be relative to .search-input-container
.dropdown
{
position
:
static
;
}
.dropdown-header
{
text-transform
:
uppercase
;
font-size
:
11px
;
...
...
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