すべてのバージョン
Gadgets and Dashboards 3.0Gadgets and Dashboards 2.0
Gadgets and Dashboards 1.0
More...
This page is part of the Gadget Developers' JavaScript Cookbook.
It is possible to have the theme dynamically adapt to the space available with some JavaScript like this:action: ...
theme : function () {
if (gadgets.window.getViewportDimensions().width < 500){
return "top-label";
} else{
return "long-label";
}
}(),
fields: ...
Gadget Developers' JavaScript Cookbook
Using the Atlassian Gadgets JavaScript Framework