am-impact / amnav

Navigation plugin for Craft
168 stars 19 forks source link

Specify sections from which entries can be chosen per-menu #17

Closed lewisjenkins closed 9 years ago

lewisjenkins commented 9 years ago

Great work on this plugin. I'd like to see an option to choose which section(s) should be included in the entry modal.

I found a way of hardcoding this in the javascript, but it would be great as a per-menu setting :)

# AmNav.js
/**
* Create EntrySelectorModal.
*/
createModal: function() {
    return Craft.createElementSelectorModal("Entry", {
        sources:['section:19'], // <-- Add this line
        multiSelect: true,
        onSelect:    $.proxy(this, 'onModalSelect')
    });
},
hubertprein commented 9 years ago

@lewisjenkins This has been added in the latest release.

lewisjenkins commented 9 years ago

Awesome :)