Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix import of ZIP projects #1974

Merged
merged 1 commit into from
Jul 28, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,21 @@
Codenvy, S.A. - initial API and implementation

-->
<form name="createProjectZipForm">
<form name="createProjectZipForm" layout="column">
<div layout="row" flex ng-init="createProjectCtrl.setForm(createProjectZipForm, 'zip');"></div>
<che-input che-form="createProjectZipForm"
che-name="remotezipURL"
che-label-name="Zip URL"
che-place-holder="Url of the zip file"
ng-model="createProjectCtrl.importProjectData.source.location"
required>
che-name="remotezipURL"
che-label-name="Zip URL"
che-place-holder="Url of the zip file"
ng-model="createProjectCtrl.importProjectData.source.location"
required>
<div ng-message="required">A zip URL is required.</div>
</che-input>
<div flex-offset-gt-xs="15">
<md-checkbox ng-model="createProjectCtrl.importProjectData.source.parameters.skipFirstLevel"
aria-label="Skip the root folder of the archive"
class="create-project-zip-checkbox">
Skip the root folder of the archive
</md-checkbox>
</div>
</form>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.create-project-zip-checkbox
margin-left 0 !important
margin-top 20px
color $label-primary-color