fixed calendar month name display
gitea/salix/dev There was a failure building this commit Details

This commit is contained in:
Joan Sanchez 2019-04-03 12:29:23 +02:00
parent 3a19141d58
commit d407fc7803
3 changed files with 42 additions and 68 deletions

View File

@ -10,8 +10,8 @@
</vn-auto> </vn-auto>
<vn-one> <vn-one>
<strong> <strong>
<span translate>{{$ctrl.defaultDate | dateTime: 'MMMM'}}</span> <span translate>{{$ctrl.defaultDate | date: 'MMMM'}}</span>
<span>{{$ctrl.defaultDate | dateTime: 'yyyy'}}</span> <span>{{$ctrl.defaultDate | date: 'yyyy'}}</span>
</strong> </strong>
</vn-one> </vn-one>
<vn-auto> <vn-auto>
@ -23,33 +23,7 @@
</vn-icon> </vn-icon>
</vn-auto> </vn-auto>
</vn-horizontal> </vn-horizontal>
<vn-horizontal>
<!-- <vn-auto>
<vn-vertical class="body">
<section class="day">
<span></span>
</section>
<section class="day">
<span>1</span>
</section>
<section class="day">
<span>2</span>
</section>
<section class="day">
<span>3</span>
</section>
<section class="day">
<span>4</span>
</section>
<section class="day">
<span>5</span>
</section>
<section class="day">
<span>6</span>
</section>
</vn-vertical>
</vn-auto>
<vn-one> -->
<vn-vertical class="body"> <vn-vertical class="body">
<vn-horizontal class="weekdays"> <vn-horizontal class="weekdays">
<section class="day" ng-click="$ctrl.selectAll(1)"> <section class="day" ng-click="$ctrl.selectAll(1)">
@ -86,6 +60,4 @@
</section> </section>
</vn-horizontal> </vn-horizontal>
</vn-vertical> </vn-vertical>
</vn-one>
</vn-horizontal>
</div> </div>

View File

@ -76,5 +76,6 @@
"You cannot remove this department": "No puedes eliminar este departamento", "You cannot remove this department": "No puedes eliminar este departamento",
"The extension must be unique": "La extensión debe ser unica", "The extension must be unique": "La extensión debe ser unica",
"The secret can't be blank": "La contraseña no puede estar en blanco", "The secret can't be blank": "La contraseña no puede estar en blanco",
"EXTENSION_INVALID_FORMAT": "La extensión es invalida" "EXTENSION_INVALID_FORMAT": "La extensión es invalida",
"We weren't able to send this SMS": "No hemos podido enviar el SMS"
} }

View File

@ -98,6 +98,7 @@ class Controller {
now.setDate(1); now.setDate(1);
months[i] = now; months[i] = now;
console.log(now);
} }
return months; return months;