From 9c321235441a707b547efa84b711e0f2876cb701 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Wed, 23 May 2018 11:38:49 -0600 Subject: [PATCH] Use flexbox in bschoices list --- static/js/bsalert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/bsalert.js b/static/js/bsalert.js index 0877ab8..ced2c14 100644 --- a/static/js/bsalert.js +++ b/static/js/bsalert.js @@ -77,7 +77,7 @@ function bschoices(title, message, options, cancelbtn, callback) { for (var i = 0; i < options.length; i++) { var text = options[i]["text"]; var val = options[i]["val"]; - $("#bschoices-list").append('
' + text + '
'); + $("#bschoices-list").append('
' + text + '
'); } $(".bschoices-option").css("cursor", "pointer"); $(".bschoices-option").on("click", function () {