Skip to content
Snippets Groups Projects
Select Git revision
  • 85e7c5092a77edd1899ab3d1f9038dc6dba373b1
  • main default protected
  • renovate/jsonschema-4.x
  • renovate/django-5.x
  • koma/feature/preference-polling-form
5 results

__init__.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    script.js 364 B
    var myPanel = null;
    
    this.loaded = function(panel, config) {
    myPanel = panel;
    $(panel).find("span").text(config);
    }
    
    
    this.resize = function() {
        $(myPanel).textfill({
            maxFontPixels:-1
        });
    }
    
    this.checkShowCondition = function() {
        return 1;
    }
    
    this.show = function() {
        $(myPanel).css("backgroundColor","red");
    }
    
    this.hide = function() {
    
    }