Skip to content

Instantly share code, notes, and snippets.

@Guria
Created January 27, 2015 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Guria/ec7034b7a409c826e989 to your computer and use it in GitHub Desktop.
Save Guria/ec7034b7a409c826e989 to your computer and use it in GitHub Desktop.
({
shouldDeps:[
{
mods: { visible: true}
}
]
})
([
{
block: 'page',
content: [
{
block: 'app-header'
},
{
block: 'container',
content: [
{
block: 'drawer',
mods: {
side: 'right'
}
}
]
},
]
}
])
exports.deps = [
{
"block": "page"
},
{
"block": "page",
"elem": "css"
},
{
"block": "page",
"elem": "js"
},
{
"block": "app-header"
},
{
"block": "container"
},
{
"block": "drawer"
},
{
"block": "drawer",
"mod": "side"
},
{
"block": "drawer",
"mod": "visible"
},
{
"block": "drawer",
"mod": "side",
"val": "right"
},
{
"block": "drawer",
"mod": "visible",
"val": true
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment