poke: fix poke dialog - js tests now if there is already a questionmark in the url

This commit is contained in:
rabuzarus 2016-05-06 02:19:45 +02:00
parent 8609cc1675
commit 9efc6fb823
1 changed files with 12 additions and 1 deletions

View File

@ -292,7 +292,9 @@ function loadModalTitle() {
function addToModal(url) {
var url = url + '?mode=modal';
var char = qOrAmp(url);
var url = url + char + 'mode=modal';
var modal = $('#modal').modal();
modal
@ -393,6 +395,15 @@ function random_digits(digits) {
return rnd;
}
// Does we need a ? or a & to append values to a url
function qOrAmp(url) {
if(url.search('\\?') < 0) {
return '?';
} else {
return '&';
}
}
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();