Base of project created

This commit is contained in:
Sebastian Seedorf
2016-01-26 18:24:31 +01:00
parent 89a8e5403e
commit 01f4a0cd49
933 changed files with 171161 additions and 0 deletions

25
node_modules/jade-bootstrap/components/dropdowns.jade generated vendored Normal file
View File

@@ -0,0 +1,25 @@
//- Dropdown
mixin dropdown(caption,items)
.dropdown
button.btn.btn-default.dropdown-toggle(type="button",data-toggle="dropdown")
= caption
|  
span.caret
ul.dropdown-menu(role="menu",aria-labelledby="dropdownMenu1")
- var args = Array.prototype.slice.call(arguments);
for item in args[1]
li(role="presentation")
a(role="menuitem",tabindex="-1",href="#{item.url}")= item.text
//- Dropup
mixin dropup(caption,items)
.dropup
button.btn.btn-default.dropdown-toggle(type="button",data-toggle="dropdown")
= caption
|  
span.caret
ul.dropdown-menu(role="menu",aria-labelledby="dropupMenu1")
- var args = Array.prototype.slice.call(arguments);
for item in args[1]
li(role="presentation")
a(role="menuitem",tabindex="-1",href="#{item.url}")= item.text