mirror of
https://github.com/sstent/node.git
synced 2026-01-27 15:41:43 +00:00
12 lines
235 B
JavaScript
12 lines
235 B
JavaScript
var scripts = {
|
|
dropdown: require('./dropdown')
|
|
}
|
|
|
|
module.exports = plugin
|
|
plugin.decorate = 'derby'
|
|
plugin.useWith = {server: true, browser: true}
|
|
|
|
function plugin(derby, options) {
|
|
derby.createLibrary(module, scripts, options)
|
|
}
|