Heray-Was-Here
Server : Apache
System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User : u81562609 ( 7464296)
PHP Version : 7.2.34
Disable Function : NONE
Directory :  /homepages/oneclick/Yourls/1.7/6/scripts/user/plugins/sample-toolbar/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /homepages/oneclick/Yourls/1.7/6/scripts/user/plugins/sample-toolbar/js/toolbar.js
// 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';
		}
	}
}


Hry