mirror of
https://github.com/sstent/node.git
synced 2026-01-27 07:33:13 +00:00
13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
var scripts = {
|
|
connectionAlert: require('./connectionAlert')
|
|
, dropdown: require('./dropdown')
|
|
, modal: require('./modal')
|
|
}
|
|
|
|
module.exports = ui
|
|
ui.decorate = 'derby'
|
|
|
|
function ui(derby, options) {
|
|
derby.createLibrary(__filename, scripts, options)
|
|
}
|