mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Replaced btn-block class occurrences with w-100
This commit is contained in:
parent
6eaebe449e
commit
56a7ac1cd9
10 changed files with 10 additions and 10 deletions
|
@ -410,7 +410,7 @@
|
|||
} else if (response.length === this.filterLimit) {
|
||||
$('<button/>', {
|
||||
'type': 'button',
|
||||
'class': 'btn btn-block btn-outline-secondary load-more text-center',
|
||||
'class': 'btn btn-outline-secondary w-100 load-more text-center',
|
||||
'text': EALang.load_more,
|
||||
'click': function () {
|
||||
this.filterLimit += 20;
|
||||
|
|
|
@ -209,7 +209,7 @@
|
|||
} else if (response.length === this.filterLimit) {
|
||||
$('<button/>', {
|
||||
'type': 'button',
|
||||
'class': 'btn btn-block btn-outline-secondary load-more text-center',
|
||||
'class': 'btn btn-outline-secondary w-100 load-more text-center',
|
||||
'text': EALang.load_more,
|
||||
'click': function () {
|
||||
this.filterLimit += 20;
|
||||
|
|
|
@ -404,7 +404,7 @@
|
|||
} else if (response.length === this.filterLimit) {
|
||||
$('<button/>', {
|
||||
'type': 'button',
|
||||
'class': 'btn btn-block btn-outline-secondary load-more text-center',
|
||||
'class': 'btn btn-outline-secondary w-100 load-more text-center',
|
||||
'text': EALang.load_more,
|
||||
'click': function () {
|
||||
this.filterLimit += 20;
|
||||
|
|
|
@ -525,7 +525,7 @@
|
|||
} else if (response.length === this.filterLimit) {
|
||||
$('<button/>', {
|
||||
'type': 'button',
|
||||
'class': 'btn btn-block btn-outline-secondary load-more text-center',
|
||||
'class': 'btn btn-outline-secondary w-100 load-more text-center',
|
||||
'text': EALang.load_more,
|
||||
'click': function () {
|
||||
this.filterLimit += 20;
|
||||
|
|
|
@ -433,7 +433,7 @@
|
|||
} else if (response.length === this.filterLimit) {
|
||||
$('<button/>', {
|
||||
'type': 'button',
|
||||
'class': 'btn btn-block btn-outline-secondary load-more text-center',
|
||||
'class': 'btn btn-outline-secondary w-100 load-more text-center',
|
||||
'text': EALang.load_more,
|
||||
'click': function () {
|
||||
this.filterLimit += 20;
|
||||
|
|
|
@ -365,7 +365,7 @@
|
|||
} else if (response.length === this.filterLimit) {
|
||||
$('<button/>', {
|
||||
'type': 'button',
|
||||
'class': 'btn btn-block btn-outline-secondary load-more text-center',
|
||||
'class': 'btn btn-outline-secondary w-100 load-more text-center',
|
||||
'text': EALang.load_more,
|
||||
'click': function () {
|
||||
this.filterLimit += 20;
|
||||
|
|
|
@ -410,7 +410,7 @@
|
|||
} else if (response.length === this.filterLimit) {
|
||||
$('<button/>', {
|
||||
'type': 'button',
|
||||
'class': 'btn btn-block btn-outline-secondary load-more text-center',
|
||||
'class': 'btn btn-outline-secondary w-100 load-more text-center',
|
||||
'text': EALang.load_more,
|
||||
'click': function () {
|
||||
this.filterLimit += 20;
|
||||
|
|
|
@ -524,7 +524,7 @@
|
|||
} else if (response.length === this.filterLimit) {
|
||||
$('<button/>', {
|
||||
'type': 'button',
|
||||
'class': 'btn btn-block btn-outline-secondary load-more text-center',
|
||||
'class': 'btn btn-outline-secondary w-100 load-more text-center',
|
||||
'text': EALang.load_more,
|
||||
'click': function () {
|
||||
this.filterLimit += 20;
|
||||
|
|
|
@ -433,7 +433,7 @@
|
|||
} else if (response.length === this.filterLimit) {
|
||||
$('<button/>', {
|
||||
'type': 'button',
|
||||
'class': 'btn btn-block btn-outline-secondary load-more text-center',
|
||||
'class': 'btn btn-outline-secondary w-100 load-more text-center',
|
||||
'text': EALang.load_more,
|
||||
'click': function () {
|
||||
this.filterLimit += 20;
|
||||
|
|
|
@ -104,7 +104,7 @@ window.FrontendBookApi = window.FrontendBookApi || {};
|
|||
|
||||
$('#available-hours').append(
|
||||
$('<button/>', {
|
||||
'class': 'btn btn-outline-secondary btn-block shadow-none available-hour',
|
||||
'class': 'btn btn-outline-secondary w-100 shadow-none available-hour',
|
||||
'data': {
|
||||
'value': availableHour
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue