# propertyhive/1.4.6/assets/js/admin/admin.js

Property Hive, version 1.4.6. 24 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/1.4.6/code/assets/js/admin/admin.js
- Raw: https://pluginprobe.com/plugins/propertyhive/1.4.6/raw/assets/js/admin/admin.js
- Modified: 2016-11-09T15:45:40+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/propertyhive/1.4.6/code/assets/js/admin/admin.js#L10-L20`.

```javascript
/* global propertyhive_admin */

/**
 * Property Hive Admin JS
 */
jQuery( function ( $ ) {

	$( document.body )

		.on( 'init_tooltips', function() {
			var tiptip_args = {
				'attribute': 'data-tip',
				'fadeIn': 50,
				'fadeOut': 50,
				'delay': 200
			};

			$( '.help_tip' ).tipTip( tiptip_args );
		});

	// Tooltips
	$( document.body ).trigger( 'init_tooltips' );

});
```
