houdini/app/javascript/legacy/components/branded_fundraising.js

11 lines
302 B
JavaScript
Raw Normal View History

2019-11-06 20:36:28 +00:00
// 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