Fix layouts non initialisés
This commit is contained in:
parent
e3bc6ce1d3
commit
da9d8d9d62
@ -68,7 +68,7 @@ $(document).ready(function () {
|
||||
|
||||
var configLayout = "<?php echo $this->getData(['user', $this->getUser('id'), 'view', 'config']);?>";
|
||||
// Non défini, valeur par défaut
|
||||
if (configLayout == null) {
|
||||
if (configLayout == "") {
|
||||
configLayout = "setup";
|
||||
}
|
||||
|
||||
|
@ -68,8 +68,9 @@ $( document ).ready(function() {
|
||||
* Sélection des onglets
|
||||
*/
|
||||
var pageLayout = "<?php echo $this->getData(['user', $this->getUser('id'), 'view', 'page']);?>";
|
||||
console.log(pageLayout);
|
||||
// Non défini, valeur par défaut
|
||||
if (pageLayout == null) {
|
||||
if (pageLayout == "") {
|
||||
pageLayout = "content";
|
||||
}
|
||||
// Tout cacher
|
||||
|
Loading…
Reference in New Issue
Block a user