Skip to content
Snippets Groups Projects
Select Git revision
  • 181caa02743adcfc863cb8594e14101cbee528cb
  • 3.0 default protected
  • 2.0
  • mamarley-autocomplete
  • master protected
5 results

nohistoryelement.js

Blame
  • nohistoryelement.js 305 B
    class NoHistoryElement {
        constructor() {
            this.render();
        }
        render() {
            return this.elem = function () {
                var $$a = document.createElement('p');
                $$a.appendChildren(translation.history.error_unavailable);
                return $$a;
            }.call(this);
        }
    }