mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-29 15:15:37 +00:00
bugFix #0002616 : change the behavior of ApplicationBaseURL. Now the object return a standard path(without a slash at the end of the path) That means every string added the URL ApplicationBaseURL must start with a Slash.
This commit is contained in:
@@ -186,7 +186,7 @@ var SOGoDragHandlesInterface = {
|
||||
},
|
||||
saveDragHandleState: function (type, position, fcn) {
|
||||
if (!$(document.body).hasClassName("popup")) {
|
||||
var urlstr = ApplicationBaseURL + "saveDragHandleState"
|
||||
var urlstr = ApplicationBaseURL + "/saveDragHandleState"
|
||||
+ "?" + type + "=" + position;
|
||||
var callbackFunction = fcn || this.saveDragHandleStateCallback;
|
||||
triggerAjaxRequest(urlstr, callbackFunction);
|
||||
|
||||
Reference in New Issue
Block a user