Initial commit

This commit is contained in:
2019-11-20 07:44:43 +01:00
commit 5bf49c4a81
41188 changed files with 5459177 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/**
* 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()
{
},
};