eliace/ergo-js

View on GitHub
js/widgets/dropdown-menu.js

Summary

Maintainability
A
50 mins
Test Coverage

//= require "dropdown-list"

Ergo.defineClass('Ergo.widgets.DropdownMenu', {

    extends: 'Ergo.widgets.DropdownList',

    defaults: {
        cls: 'menu',
        defaultItem: {
            components: {
                content: {
                    etype: 'html:a'
                }
            }
        }
    }

}, 'widgets:dropdown-menu');