Skip to content

Commit ea2ce35

Browse files
committed
run qx lint --fix
1 parent e546624 commit ea2ce35

File tree

252 files changed

+2206
-3493
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

252 files changed

+2206
-3493
lines changed

source/class/qxl/demobrowser/Appearance.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ qx.Theme.define("qxl.demobrowser.Appearance",
1010
alias : "tree",
1111
include : "tree",
1212

13-
style : function()
14-
{
13+
style : function() {
1514
return {
1615
width : 270,
1716
padding: 0,

source/class/qxl/demobrowser/Application.js

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ qx.Class.define("qxl.demobrowser.Application",
3535
{
3636
extend : qx.application.Standalone,
3737

38-
construct : function()
39-
{
38+
construct : function() {
4039
this.base(arguments);
4140

4241
// Include CSS files
@@ -56,25 +55,22 @@ qx.Class.define("qxl.demobrowser.Application",
5655
members :
5756
{
5857
// overridden
59-
main : function()
60-
{
58+
main : function() {
6159
this.base(arguments);
6260

6361
// Enable logging in source (or debug build)
64-
if (qx.core.Environment.get("qx.debug"))
65-
{
62+
if (qx.core.Environment.get("qx.debug")) {
6663
qx.log.appender.Native;
6764
qx.log.appender.Console;
6865
}
6966

7067
// Initialize the viewer
71-
this.viewer = new qxl.demobrowser.DemoBrowser;
68+
this.viewer = new qxl.demobrowser.DemoBrowser();
7269
this.getRoot().add(this.viewer, {edge:0});
7370
},
7471

7572
// overridden
76-
finalize : function()
77-
{
73+
finalize : function() {
7874
this.base(arguments);
7975
this.viewer.dataLoader(qx.$$appRoot + "script/demodata.json");
8076
}

0 commit comments

Comments
 (0)