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
f1102b33
Commit
f1102b33
authored
Feb 05, 2016
by
Josh Frye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Frontend changes from MR feedback
parent
f8526fef
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
app/assets/javascripts/dashboard.js.coffee
app/assets/javascripts/dashboard.js.coffee
+4
-3
No files found.
app/assets/javascripts/dashboard.js.coffee
View file @
f1102b33
...
...
@@ -4,12 +4,13 @@
initSearch
:
->
@
timer
=
null
$
(
"#project-filter-form-field"
).
keyup
->
$
(
"#project-filter-form-field"
).
on
(
'keyup'
,
->
clearTimeout
(
@
timer
)
@
timer
=
setTimeout
(
Dashboard
.
filterResults
,
500
)
)
filterResults
:
=>
$
(
'.projects-list-holder'
).
css
(
"opacity"
,
'0.5'
)
$
(
'.projects-list-holder'
).
fadeTo
(
250
,
0.5
)
form
=
null
form
=
$
(
"#project-filter-form"
)
...
...
@@ -21,7 +22,7 @@
url
:
form
.
attr
(
'action'
)
data
:
form
.
serialize
()
complete
:
->
$
(
'.projects-list-holder'
).
css
(
"opacity"
,
'1.0'
)
$
(
'.projects-list-holder'
).
fadeTo
(
250
,
1
)
success
:
(
data
)
->
$
(
'div.projects-list-holder'
).
replaceWith
(
data
.
html
)
# Change url so if user reload a page - search results are saved
...
...
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