houdini/app/javascript/legacy/components/branded_fundraising.js
2020-04-23 14:09:14 -05:00

10 lines
302 B
JavaScript

// License: LGPL-3.0-or-later
const brandColors = require('../components/nonprofit-branding')
$('[if-branded]').each(function() {
var params = this.getAttribute("if-branded").split(',').map(function(s) { return s.trim() })
$(this).css(params[0], brandColors[params[1]])
})
exports = brandColors