Created
January 27, 2015 10:53
-
-
Save Guria/d30b0dac045ff33d8172 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
({ | |
shouldDeps:[ | |
{ | |
mods: { visible: true} | |
} | |
] | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
([ | |
{ | |
block: 'page', | |
content: [ | |
{ | |
block: 'app-header' | |
}, | |
{ | |
block: 'container', | |
content: [ | |
{ | |
block: 'drawer', | |
mods: { | |
side: 'right' | |
} | |
} | |
] | |
}, | |
] | |
} | |
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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