1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00
yourls_ynh/sources/user/plugins/sample-toolbar/js/toolbar.js
2014-06-13 07:30:00 +02:00

22 lines
749 B
JavaScript

// If javascript is enabled, display the button
document.getElementById('yourls-always').style.display = 'block';
// When button clicked, store a cookie that says the user doesn't want a toolbar
document.getElementById('yourls-always').onclick = yourls_cookie_no_toolbar_please;
function yourls_cookie_no_toolbar_please() {
var exdate=new Date();
exdate.setDate( exdate.getDate()+365 ); // store 365 days
document.cookie = "yourls_no_toolbar=1;expires="+exdate.toUTCString() ;
}
// Get the number of delicious bookmarks
function yourls_get_books(json) {
if( json.length ) {
var books = json[0].total_posts.toString();
if( books ) {
document.getElementById('yourls-delicious-link').innerHTML = ' <b>'+books+'</b> bookmarks';
}
}
}