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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
53dab449
Commit
53dab449
authored
Jan 16, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed specs
parent
95ad6de0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+1
-1
app/assets/javascripts/projects/project_new.js
app/assets/javascripts/projects/project_new.js
+3
-0
spec/javascripts/projects/project_new_spec.js
spec/javascripts/projects/project_new_spec.js
+2
-2
No files found.
app/assets/javascripts/dispatcher.js
View file @
53dab449
...
...
@@ -72,7 +72,7 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
return
false
;
}
const
fail
=
(
e
)
=>
{
throw
e
;
Flash
(
'
Error loading dynamic module
'
);
}
const
fail
=
(
)
=>
Flash
(
'
Error loading dynamic module
'
);
const
callDefault
=
m
=>
m
.
default
();
path
=
page
.
split
(
'
:
'
);
...
...
app/assets/javascripts/projects/project_new.js
View file @
53dab449
...
...
@@ -98,12 +98,15 @@ const bindEvents = () => {
});
$projectImportUrl
.
keyup
(()
=>
deriveProjectPathFromUrl
(
$projectImportUrl
));
<<<<<<<
HEAD
$
(
'
.import_git
'
).
on
(
'
click
'
,
()
=>
{
const
$projectMirror
=
$
(
'
#project_mirror
'
);
$projectMirror
.
attr
(
'
disabled
'
,
!
$projectMirror
.
attr
(
'
disabled
'
));
});
=======
>>>>>>>
8
e629a4545
...
fixed
specs
};
document
.
addEventListener
(
'
DOMContentLoaded
'
,
bindEvents
);
...
...
spec/javascripts/projects/project_new_spec.js
View file @
53dab449
import
projectNew
from
'
~/p
ages/projects/shared
/project_new
'
;
import
projectNew
from
'
~/p
rojects
/project_new
'
;
describe
(
'
New Project
'
,
()
=>
{
f
describe
(
'
New Project
'
,
()
=>
{
let
$projectImportUrl
;
let
$projectPath
;
...
...
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