# adminimize/1.11.3/js/timestamp.js

Adminimize, version 1.11.3. 18 lines.

- Page: https://pluginprobe.com/plugins/adminimize/1.11.3/code/js/timestamp.js
- Raw: https://pluginprobe.com/plugins/adminimize/1.11.3/raw/js/timestamp.js
- Modified: 2017-11-16T15:47:16+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.11.3/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;
	});
}

```
