When using require to load modules, this fails because zeroclipboard is not put onto the window object.
see https://github.com/zeroclipboard/zeroclipboard/blob/master/dist/ZeroClipboard.js#L2577
to fix, I added window.ZeroClipboard = require('zeroclipboard'); in my app config; but that doesn't seem ideal.
When using require to load modules, this fails because zeroclipboard is not put onto the window object.
see https://github.com/zeroclipboard/zeroclipboard/blob/master/dist/ZeroClipboard.js#L2577
to fix, I added
window.ZeroClipboard = require('zeroclipboard');in my app config; but that doesn't seem ideal.