framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
14 lines • 410 B
JavaScript
/** @jsx $jsx */
import $jsx from '../../../shared/$jsx.js';
export default {
render() {
return $jsx("div", {
class: "color-picker-module color-picker-module-current-color"
}, $jsx("div", {
class: "color-picker-current-color"
}));
},
update(self) {
self.$el.find('.color-picker-module-current-color .color-picker-current-color').css('background-color', self.value.hex);
}
};