Skip to content
Snippets Groups Projects
Commit 66f00901 authored by Tilman Vatteroth's avatar Tilman Vatteroth :robot:
Browse files

IT WORKS!- Demo eingefügt

parent 8554e669
No related branches found
No related tags found
No related merge requests found
/**
* Created by tilman on 26.08.15.
*/
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() {
}
span {
color:white;
font-size: 200pt;
}
\ No newline at end of file
<span>It works!</span>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment