remove dead code, fix absolute_url

This commit is contained in:
j 2010-09-18 17:16:45 +02:00
commit d727097a7c
3 changed files with 4 additions and 12 deletions

View file

@ -373,7 +373,9 @@ app.afterLaunch.push(function() {
absolute_url: function (url) {
var base = document.location.href;
if (url.substring(0, 1) == '/') {
url = document.location.href.substring(0, document.location.href.length-document.location.pathname.length) + url;
base = document.location.protocol + '//' + document.location.hostname;
if(document.location.port) base += ':'+document.location.port
url = base + url;
}
else {
if(base.substring(base.length-1) == '/')