From ec057fe8a465d89a4b9930c0a486f12ebb219214 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Mon, 19 Jan 2015 09:31:43 +0100 Subject: [PATCH] Don't replace https with http in form action URL I guess this is a residual line from when quitter.se had to rewrite their calls to http manually? --- js/qvitter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/qvitter.js b/js/qvitter.js index 8f386ad..5009cc2 100644 --- a/js/qvitter.js +++ b/js/qvitter.js @@ -505,7 +505,7 @@ $('#settingslink').click(function(){ $('body').on('click','.external-follow-button',function(event){ - popUpAction('popup-external-follow', window.sL.userExternalFollow + ' ' + $('.profile-card-inner .screen-name').html(),'
','
'); + popUpAction('popup-external-follow', window.sL.userExternalFollow + ' ' + $('.profile-card-inner .screen-name').html(),'
','
'); $('#popup-external-follow form input#profile').focus(); $('#popup-external-follow button.primary').click(function(){ $('#popup-external-follow form').submit(); @@ -520,7 +520,7 @@ $('body').on('click','.external-follow-button',function(event){ $('body').on('click','.external-member-button',function(event){ - popUpAction('popup-external-join', window.sL.joinExternalGroup + ' ' + $('.profile-card-inner .screen-name').html(),'
','
'); + popUpAction('popup-external-join', window.sL.joinExternalGroup + ' ' + $('.profile-card-inner .screen-name').html(),'
','
'); $('#popup-external-join form input#profile').focus(); $('#popup-external-join button.primary').click(function(){ $('#popup-external-join form').submit();