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
8e97e1fc
Commit
8e97e1fc
authored
Feb 02, 2018
by
Fatih Acet
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'axios-project' into 'master'
Replace $.ajax in project.js See merge request gitlab-org/gitlab-ce!16873
parents
a7f1463e
0acbc1b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
project.js
app/assets/javascripts/pages/projects/project.js
+10
-9
No files found.
app/assets/javascripts/pages/projects/project.js
View file @
8e97e1fc
/* eslint-disable func-names, space-before-function-paren, no-var, consistent-return, no-new, prefer-arrow-callback, no-return-assign, one-var, one-var-declaration-per-line, object-shorthand, no-else-return, newline-per-chained-call, no-shadow, vars-on-top, prefer-template, max-len */
import
Cookies
from
'js-cookie'
;
import
{
visitUrl
}
from
'../../lib/utils/url_utility'
;
import
{
__
}
from
'~/locale'
;
import
{
visitUrl
}
from
'~/lib/utils/url_utility'
;
import
axios
from
'~/lib/utils/axios_utils'
;
import
flash
from
'~/flash'
;
import
projectSelect
from
'../../project_select'
;
export
default
class
Project
{
...
...
@@ -67,17 +70,15 @@ export default class Project {
$dropdown
=
$
(
this
);
selected
=
$dropdown
.
data
(
'selected'
);
return
$dropdown
.
glDropdown
({
data
:
function
(
term
,
callback
)
{
return
$
.
ajax
({
url
:
$dropdown
.
data
(
'refs-url'
),
data
:
{
data
(
term
,
callback
)
{
axios
.
get
(
$dropdown
.
data
(
'refs-url'
),
{
params
:
{
ref
:
$dropdown
.
data
(
'ref'
),
search
:
term
,
},
dataType
:
'json'
,
}).
done
(
function
(
refs
)
{
return
callback
(
refs
);
});
})
.
then
(({
data
})
=>
callback
(
data
))
.
catch
(()
=>
flash
(
__
(
'An error occurred while getting projects'
)));
},
selectable
:
true
,
filterable
:
true
,
...
...
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