• File: timestamp.js
  • Full Path: /home/mrjeffgoldman/public_html/kensingtonsearch.net/wp-content/plugins/adminimize/js/timestamp.js
  • Date Modified: 08/18/2026 9:56 AM
  • File size: 347 bytes
  • MIME-type: application/javascript
  • Charset: utf-8
/**
 * timestamp open
 */
addLoadEvent(function(){
	open_timestamp();
	jQuery('.edit-timestamp').click();
});

function open_timestamp() {
	jQuery('.edit-timestamp').click(function () {
		if ( jQuery('#timestampdiv').is(":hidden") ) {
			jQuery('#timestampdiv').slideDown("normal");
			jQuery('.edit-timestamp').hide();
		}
		return false;
	});
}