mirror of https://github.com/rancher/ui.git
16 lines
338 B
JavaScript
16 lines
338 B
JavaScript
module.exports = {
|
|
description: 'Rancher specific modal',
|
|
|
|
locals: function(options) {
|
|
// Return custom template variables here.
|
|
return {
|
|
// options are large-modal or medium-modal
|
|
size: options.size || 'medium-modal'
|
|
};
|
|
}
|
|
|
|
// afterInstall: function(options) {
|
|
// // Perform extra work here.
|
|
// }
|
|
};
|