Skip to content

Commit

Permalink
typo video picker placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
saschadube committed Jan 28, 2016
1 parent 42dcd9e commit af2de20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/system/modules/editor/app/components/video-picker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
<div class="uk-form-row">
<label for="form-src" class="uk-form-label">{{ 'URL' | trans }}</label>
<div class="uk-form-controls">
<input id="form-src" class="uk-width-1-1" type="text" :placeholder="'URL' | trans" v-model="video.data.src" debounce="500">
<input id="form-src" class="uk-width-1-1" type="text" v-model="video.data.src" debounce="500">
</div>
</div>

<div class="uk-grid uk-grid-width-1-2 uk-form-row">
<div>
<label for="form-src" class="uk-form-label">{{ 'Width' | trans }}</label>
<input class="uk-width-1-1" id="form-width" type="text" :placeholder="'Width' | trans" v-model="video.data.width">
<input class="uk-width-1-1" id="form-width" type="text" :placeholder="'auto' | trans" v-model="video.data.width">
</div>
<div>
<label for="form-src" class="uk-form-label">{{ 'Height' | trans }}</label>
<input class="uk-width-1-1" id="form-height" type="text" :disabled="!isVimeo && !isYoutube" :placeholder="'Height' | trans"v-model="video.data.height">
<input class="uk-width-1-1" id="form-height" type="text" :disabled="!isVimeo && !isYoutube" :placeholder="'auto' | trans"v-model="video.data.height">
</div>
</div>

Expand Down

0 comments on commit af2de20

Please sign in to comment.