mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-01 22:48:45 +02:00
37 lines
585 B
JavaScript
37 lines
585 B
JavaScript
/*
|
|
* @copyright Copyright (C) 2010-2021 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
;
|
|
$(function()
|
|
{
|
|
// the widget definition, where 'itop' is the namespace,
|
|
// 'panel' the widget name
|
|
$.widget( 'itop.object_details', $.itop.panel,
|
|
{
|
|
// default options
|
|
options:
|
|
{
|
|
},
|
|
css_classes:
|
|
{
|
|
},
|
|
js_selectors:
|
|
{
|
|
},
|
|
|
|
// the constructor
|
|
_create: function()
|
|
{
|
|
this._super();
|
|
},
|
|
// events bound via _bind are removed automatically
|
|
// revert other modifications here
|
|
_destroy: function()
|
|
{
|
|
this._super();
|
|
},
|
|
});
|
|
});
|