Qvitter/js/toggleqvitter.js

60 lines
3.5 KiB
JavaScript
Raw Normal View History

2015-08-25 20:27:14 +09:00
/* · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · ·
· ·
· ·
· Q V I T T E R ·
· ·
2016-01-18 09:24:37 +09:00
· https://git.gnu.io/h2p/Qvitter ·
· ·
· ·
· <o) ·
· /_//// ·
· (____/ ·
· (o< ·
· o> \\\\_\ ·
· \\) \____) ·
· ·
2015-08-25 20:27:14 +09:00
· ·
· ·
· Qvitter is free software: you can redistribute it and / or modify it ·
· under the terms of the GNU Affero General Public License as published by ·
· the Free Software Foundation, either version three of the License or (at ·
· your option) any later version. ·
· ·
· Qvitter is distributed in hope that it will be useful but WITHOUT ANY ·
· WARRANTY; without even the implied warranty of MERCHANTABILTY or FITNESS ·
· FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for ·
· more details. ·
· ·
· You should have received a copy of the GNU Affero General Public License ·
· along with Qvitter. If not, see <http://www.gnu.org/licenses/>. ·
· ·
· Contact h@nnesmannerhe.im if you have any questions. ·
2015-08-25 20:27:14 +09:00
· ·
· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · */
2015-08-25 20:27:14 +09:00
/* ·
·
· Qvitter link in default GNU Social UI, toggle setting in api and reload page when finished
2015-08-25 20:27:14 +09:00
·
· · · · · · · · · · · · · */
if(qvitterEnabled) {
2015-08-25 20:27:14 +09:00
$('#site_nav_global_primary').find('.nav').first().prepend('<li id="toggleqvitter" title="' + toggleText + '"><a href="' + qvitterAllLink + '">' + toggleText + '</a></li>');
}
else {
2015-08-25 20:27:14 +09:00
$('#site_nav_global_primary').find('.nav').first().prepend('<li id="toggleqvitter" title="' + toggleText + '"><a href="' + location.href + '">' + toggleText + '</a></li>');
$('#toggleqvitter > a').click(function(e){
2015-08-25 20:27:14 +09:00
e.preventDefault();
$.get(toggleQvitterAPIURL,function(data){
if(data.success === true) {
2015-08-25 20:27:14 +09:00
window.location.href = qvitterAllLink;
}
});
2015-08-25 20:27:14 +09:00
});
2015-08-25 20:27:14 +09:00
}