# adminimize/1.7.12/js/timestamp.js

Adminimize, version 1.7.12. 18 lines.

- Page: https://pluginprobe.com/plugins/adminimize/1.7.12/code/js/timestamp.js
- Raw: https://pluginprobe.com/plugins/adminimize/1.7.12/raw/js/timestamp.js
- Modified: 2010-10-25T20:10:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/adminimize/1.7.12/code/js/timestamp.js#L10-L20`.

```javascript
/**
 * 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;
	});
}

```
