forked from ZwiiCMS-Team/ZwiiCMS
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']);?>";
|
var configLayout = "<?php echo $this->getData(['user', $this->getUser('id'), 'view', 'config']);?>";
|
||||||
// Non défini, valeur par défaut
|
// Non défini, valeur par défaut
|
||||||
if (configLayout == null) {
|
if (configLayout == "") {
|
||||||
configLayout = "setup";
|
configLayout = "setup";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,8 +68,9 @@ $( document ).ready(function() {
|
|||||||
* Sélection des onglets
|
* Sélection des onglets
|
||||||
*/
|
*/
|
||||||
var pageLayout = "<?php echo $this->getData(['user', $this->getUser('id'), 'view', 'page']);?>";
|
var pageLayout = "<?php echo $this->getData(['user', $this->getUser('id'), 'view', 'page']);?>";
|
||||||
|
console.log(pageLayout);
|
||||||
// Non défini, valeur par défaut
|
// Non défini, valeur par défaut
|
||||||
if (pageLayout == null) {
|
if (pageLayout == "") {
|
||||||
pageLayout = "content";
|
pageLayout = "content";
|
||||||
}
|
}
|
||||||
// Tout cacher
|
// Tout cacher
|
||||||
|
Loading…
Reference in New Issue
Block a user