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

missing translation for 'Add a new stack' #169

Merged
merged 13 commits into from
Jun 6, 2017
Prev Previous commit
Next Next commit
Merge branch 'master' into missing_translation
  • Loading branch information
artemanufrij committed Jun 1, 2017
commit 763afaade4e7cb3a1403fab0d0e553c203805d1d
4 changes: 2 additions & 2 deletions templates/part.board.mainView.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
<div class="stack" ng-repeat="s in stacks" data-as-sortable-item
data-columnindex="{{$index}}" id="column{{$index}}"
style="">
<h2 data-as-sortable-item-handle><span ng-show="!s.status.editStack">{{ s.title }}</span>
<form ng-if="s.status.editStack" ng-submit="stackservice.update(s)">
<span class="editable-inline" ng-show="!s.status.editStack" ng-click="s.status.editStack=true">{{ s.title }}</span>
<form ng-if="s.status.editStack" ng-submit="stackservice.update(s); s.status.editStack=false">
<input type="text" placeholder="<?php p($l->t('Add a new stack')); ?>"
ng-blur="stackservice.update(s); s.status.editStack=false" ng-model="s.title"
autofocus-on-insert required maxlength="100" />
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.