[go: nahoru, domu]

Skip to content

Commit

Permalink
extend apidoc
Browse files Browse the repository at this point in the history
  • Loading branch information
brigadir committed Dec 19, 2018
1 parent 9bdff37 commit 9762b96
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions src/js/ui/ui.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,13 @@ zebkit.package("ui", function(pkg, Class) {
},

function $prototype() {
/**
* Image loader runner.
* @attribute $runner
* @readOnly
* @private
* @type {zebkit.DoIt}
*/
this.$runner = null;

/**
Expand Down Expand Up @@ -459,14 +466,12 @@ zebkit.package("ui", function(pkg, Class) {
$this.$runner = null;
$this.setView(null);
});
} else if (this.$runner === null) {
this.setView(null);
} else {
if (this.$runner === null) {
this.setView(null);
} else {
this.$runner.then(function() {
$this.setView(null);
});
}
this.$runner.then(function() {
$this.setView(null);
});
}
return this;
};
Expand Down Expand Up @@ -1057,6 +1062,13 @@ zebkit.package("ui", function(pkg, Class) {
this.barView = "blue";


/**
* Title element view .
* @attribute titleView
* @readOnly
* @type {zebkit.draw.View}
* @default null
*/
this.titleView = null;

/**
Expand Down

0 comments on commit 9762b96

Please sign in to comment.