Reputation: 93
I've seen the documentation for apostrophe-modal, but does anyone have sample code to use apostrophe-modal in the real world?
Upvotes: 1
Views: 392
Reputation: 7572
I'm the lead architect of Apostrophe at P'unk Avenue.
There are many such examples in the Apostrophe source code itself.
One of the most accessible perhaps is the tag manager module:
https://github.com/punkave/apostrophe/tree/master/lib/modules/apostrophe-tags
The modal itself:
And the index.js file and the files it requires, which set up supporting server-side routes and push the relevant frontend asset files:
https://github.com/punkave/apostrophe/blob/master/lib/modules/apostrophe-tags/index.js
Hope this is helpful to you!
Upvotes: 1