Skip to content
Snippets Groups Projects
Select Git revision
  • 2827b7145b758a8ce71859ec5c8e6078df2eccf4
  • master default
  • method_check
  • custom_prefix
  • package
  • cookies
  • v2.1.1
  • v2.1.0
  • v2.1.0-rc5
  • v2.1.0-rc4
  • v2.1.0-rc3
  • v2.1.0-rc2
  • v2.1.0-rc1
  • v2.0.7
  • v2.0.6
  • v2.0.5
  • v2.0.4
  • v2.0.3
  • v2.0.2
  • v2.0.1
  • v2.0.0
  • v1.2.8
  • v1.2.7
  • v1.2.6
  • v1.2.5
  • v1.2.4
26 results

config.go

Blame
  • loadmore.js 470 B
    class LoadMore extends Component {
        constructor(text, eventListener) {
            super();
            this.render(text);
        }
        render(text) {
            return this.elem = function () {
                var $$a = document.createElement('div');
                $$a.setAttribute('class', 'inline-button');
                $$a.addEventListener('click', event => this.sendEvent('click', [event]));
                $$a.appendChildren(text);
                return $$a;
            }.call(this);
        }
    }