Compare commits
No commits in common. "c9e1a26f41885ae3bcf5ccc84e24d7c9b9747f38" and "648ce3dda190a473f4e96cacc5a603c774713047" have entirely different histories.
c9e1a26f41
...
648ce3dda1
6 changed files with 6 additions and 18 deletions
2
Makefile
2
Makefile
|
@ -24,6 +24,6 @@ package:
|
|||
ifneq ("$(wildcard $(OUTFILE_ZIP))","")
|
||||
rm $(OUTFILE_ZIP)
|
||||
endif
|
||||
zip -r -9 $(OUTFILE_ZIP) $(BUILD_DIR)
|
||||
zip -r $(OUTFILE_ZIP) $(BUILD_DIR)
|
||||
|
||||
# vim:set noexpandtab:
|
||||
|
|
|
@ -10,8 +10,6 @@ The differences from the upstream repository are described below:
|
|||
|
||||
### How to build
|
||||
|
||||
**Requires 2GB+ memory.**
|
||||
|
||||
```sh
|
||||
# Docker
|
||||
make
|
||||
|
|
|
@ -18,10 +18,8 @@
|
|||
:placeholder="$t('polls.option')"
|
||||
:maxlength="maxLength"
|
||||
@change="updatePollToParent"
|
||||
@keydown.enter.stop.prevent="
|
||||
$event.isComposing || $event.keyCode === 229 || nextOption(index)
|
||||
"
|
||||
/>
|
||||
@keydown.enter.stop.prevent="$event.isComposing || $event.keyCode === 229 || nextOption(index)"
|
||||
>
|
||||
</div>
|
||||
<button
|
||||
v-if="options.length > 2"
|
||||
|
|
|
@ -167,11 +167,7 @@
|
|||
:disabled="posting && !optimisticPosting"
|
||||
class="form-post-body"
|
||||
:class="{ 'scrollable-form': !!maxHeight }"
|
||||
@keydown.exact.enter="
|
||||
$event.isComposing ||
|
||||
$event.keyCode === 229 ||
|
||||
(submitOnEnter && postStatus($event, newStatus))
|
||||
"
|
||||
@keydown.exact.enter="$event.isComposing || $event.keyCode === 229 || submitOnEnter && postStatus($event, newStatus)"
|
||||
@keydown.meta.enter="postStatus($event, newStatus)"
|
||||
@keydown.ctrl.enter="!submitOnEnter && postStatus($event, newStatus)"
|
||||
@input="resize"
|
||||
|
|
|
@ -11,9 +11,7 @@
|
|||
v-model="searchTerm"
|
||||
class="search-input"
|
||||
:placeholder="$t('nav.search')"
|
||||
@keydown.enter="
|
||||
$event.isComposing || $event.keyCode === 229 || newQuery(searchTerm)
|
||||
"
|
||||
@keyup.enter="$event.isComposing || $event.keyCode === 229 || newQuery(searchTerm)"
|
||||
>
|
||||
<button
|
||||
class="btn button-default search-button"
|
||||
|
|
|
@ -24,9 +24,7 @@
|
|||
class="search-bar-input"
|
||||
:placeholder="$t('nav.search')"
|
||||
type="text"
|
||||
@keydown.enter="
|
||||
$event.isComposing || $event.keyCode === 229 || find(searchTerm)
|
||||
"
|
||||
@keyup.enter="$event.isComposing || $event.keyCode === 229 || find(searchTerm)"
|
||||
>
|
||||
<button
|
||||
class="button-default search-button"
|
||||
|
|
Loading…
Reference in a new issue