mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 11:08:45 +02:00
N°4021 - Introduce sticky header for panels and object details (tab container to be done)
This commit is contained in:
36
js/layouts/object/object-details.js
Normal file
36
js/layouts/object/object-details.js
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* @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();
|
||||
},
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user