', {
'class': 'checkbox',
'html': [
- $('
', {
- 'class': 'checkbox',
+ $('
', {
+ 'class': 'checkbox form-check',
'html': [
$('
', {
+ 'class': 'form-check-input',
'type': 'checkbox',
'data-id': service.id
}),
- $('
', {
- 'text': service.name
- })
+ $('
', {
+ 'class': 'form-check-label',
+ 'text': service.name,
+ 'for': service.id
+ }),
]
})
]
@@ -87,16 +90,19 @@ window.BackendUsers = window.BackendUsers || {};
$('
', {
'class': 'checkbox',
'html': [
- $('
', {
- 'class': 'checkbox',
+ $('
', {
+ 'class': 'checkbox form-check',
'html': [
$('
', {
+ 'class': 'form-check-input',
'type': 'checkbox',
'data-id': provider.id
}),
- $('
', {
- 'text': provider.first_name + ' ' + provider.last_name
- })
+ $('
', {
+ 'class': 'form-check-label',
+ 'text': provider.first_name + ' ' + provider.last_name,
+ 'for': provider.id
+ }),
]
})
]
@@ -156,19 +162,22 @@ window.BackendUsers = window.BackendUsers || {};
$('
', {
'class': 'checkbox',
'html': [
- $('
', {
- 'class': 'checkbox',
+ $('
', {
+ 'class': 'checkbox form-check',
'html': [
$('
', {
+ 'class': 'form-check-input',
'type': 'checkbox',
'data-id': provider.id,
'prop': {
'disabled': true
}
}),
- $('
', {
- 'text': provider.first_name + ' ' + provider.last_name
- })
+ $('
', {
+ 'class': 'form-check-label',
+ 'text': provider.first_name + ' ' + provider.last_name,
+ 'for': provider.id
+ }),
]
})
]
diff --git a/assets/js/working_plan.js b/assets/js/working_plan.js
index 7b147dc0..7cc3a155 100755
--- a/assets/js/working_plan.js
+++ b/assets/js/working_plan.js
@@ -64,19 +64,19 @@
$('
| ', {
'html': [
$('
', {
- 'class': 'checkbox',
+ 'class': 'checkbox form-check',
'html': [
+ $('
', {
+ 'class': 'form-check-input',
+ 'type': 'checkbox',
+ 'id': index
+ }),
$('
', {
- 'html': [
- $('
', {
- 'type': 'checkbox',
- 'id': index
- }),
- $('
', {
- 'text': dayDisplayName
- })
- ]
- })
+ 'class': 'form-check-label',
+ 'text': dayDisplayName,
+ 'for': index
+ }),
+
]
})
]