Gossamer Forum
Quote Reply
A JS Bug
In templates/common, file editor.js and editor_font.html:

var url = window.location.protocol + '//' + window.location.hostname + '/' + window.location.pathname + '?<%hidden_query%>';

It will cause cannot find when the server not use port 80.

You can modify to :

var url = window.location.pathname + '?<%hidden_query%>';

It 's OK.
Quote Reply
Re: [backdream] A JS Bug In reply to
Hi,

It was fixed in the 1.1.5 release to take the port into consideration.

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com