N°4021 - Introduce sticky header for panels and object details (tab container to be done)

This commit is contained in:
Molkobain
2021-05-25 20:16:36 +02:00
parent dd284a6c1d
commit 3ee4a14c56
12 changed files with 526 additions and 54 deletions

View 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();
},
});
});