Corrected column class.
This commit is contained in:
parent
7b682e5c16
commit
32d4cf8bf2
1 changed files with 2 additions and 2 deletions
|
@ -67,7 +67,7 @@ window.BackendUsers = window.BackendUsers || {};
|
||||||
exports.wp.bindEventHandlers();
|
exports.wp.bindEventHandlers();
|
||||||
|
|
||||||
// Fill the services and providers list boxes.
|
// Fill the services and providers list boxes.
|
||||||
var html = '<div class="col-md-12">';
|
var html = '<div class="col-xs-12">';
|
||||||
$.each(GlobalVariables.services, function(index, service) {
|
$.each(GlobalVariables.services, function(index, service) {
|
||||||
html +=
|
html +=
|
||||||
'<div class="checkbox">' +
|
'<div class="checkbox">' +
|
||||||
|
@ -82,7 +82,7 @@ window.BackendUsers = window.BackendUsers || {};
|
||||||
$('#provider-services').html(html);
|
$('#provider-services').html(html);
|
||||||
$('#provider-services').jScrollPane({ mouseWheelSpeed: 70 });
|
$('#provider-services').jScrollPane({ mouseWheelSpeed: 70 });
|
||||||
|
|
||||||
html = '<div class="col-md-12">';
|
html = '<div class="col-xs-12">';
|
||||||
$.each(GlobalVariables.providers, function(index, provider) {
|
$.each(GlobalVariables.providers, function(index, provider) {
|
||||||
html +=
|
html +=
|
||||||
'<div class="checkbox">' +
|
'<div class="checkbox">' +
|
||||||
|
|
Loading…
Reference in a new issue