JoelBesada / pasteboard

Clipboard and drag & drop image sharing web app

Home Page:http://pasteboard.co

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

URL Issue

opened this issue · comments

Tried a new install of the script. after hitting upload it gives the link in a text box. eg.

www.i.is.cc/2O4LcnyJ.png

but the goto image button has the domain twice.

http://www.i.is.cc/www.i.is.cc/2O4LcnyJ.png

I had this issue too. I changed the long url to include the http:// so the browser didn't think it was a relative path.
"/controllers/main.coffee" I changed line 116
longURL = "#{domain}/#{fileName}"
to
longURL = "http://#{domain}/#{fileName}"

It did the trick for me! :)