33 lines
700 B
JavaScript
33 lines
700 B
JavaScript
/**
|
|
* 2017 Agence Bondaty and Co
|
|
*
|
|
* @author Agence Bondaty and Co <support@bondaty-and-co.fr>
|
|
* @copyright 2017 Agence Bondaty and Co
|
|
* @license single
|
|
* Agence Bondaty and Co
|
|
*/
|
|
|
|
var app = {
|
|
_path: null,
|
|
};
|
|
app.form = {
|
|
initialize: function()
|
|
{
|
|
var fieldset_2 = $('#fieldset_2 .form-wrapper').children();
|
|
this.id_restricted = $(fieldset_2[1]);
|
|
this.render();
|
|
},
|
|
render: function()
|
|
{
|
|
this.id_restricted.hide();
|
|
},
|
|
};
|
|
app.list = {
|
|
initialize: function()
|
|
{
|
|
this.render();
|
|
},
|
|
render: function()
|
|
{
|
|
},
|
|
}; |