我尝试基于“Galleria theme Classic”构建我的自定义主题,但我正在努力在我的按钮上触发类,我想,我错过了一些东西,
this.addElement('play').appendChild('container','play');
var g = this;
this.$('play').text('Play').bind('mouseup', function() {
g.playToggle();
g.toggleClass("highlight"); // - This line don't work
});
我收到错误@TypeError:g.toggleClass 不是函数@