fix: jira sub path instalation

This commit is contained in:
Bengt Brodersen 2016-05-20 09:22:30 +02:00
parent 6a523dbd52
commit 8285bf2a09

View File

@ -568,7 +568,7 @@
module.baseUrl = function() {
var jiraBaseUrl = window.location.origin;
try { jiraBaseUrl = $("meta[name='ajs-jira-base-url']").attr('content'); } catch(ex){}
try { jiraBaseUrl = $("input[title='baseURL']").attr('value'); } catch(ex){}
return jiraBaseUrl
}