Skip to content

Commit 5645690

Browse files
committed
General docs - reverting src/pixi changes
(Because outside of control, really.)
1 parent 8b1c762 commit 5645690

12 files changed

Lines changed: 27 additions & 27 deletions

src/pixi/display/DisplayObject.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ PIXI.DisplayObject = function()
108108
*
109109
* @property parent
110110
* @type DisplayObjectContainer
111-
* @readonly
111+
* @readOnly
112112
*/
113113
this.parent = null;
114114

@@ -117,7 +117,7 @@ PIXI.DisplayObject = function()
117117
*
118118
* @property stage
119119
* @type Stage
120-
* @readonly
120+
* @readOnly
121121
*/
122122
this.stage = null;
123123

@@ -126,7 +126,7 @@ PIXI.DisplayObject = function()
126126
*
127127
* @property worldAlpha
128128
* @type Number
129-
* @readonly
129+
* @readOnly
130130
*/
131131
this.worldAlpha = 1;
132132

@@ -135,7 +135,7 @@ PIXI.DisplayObject = function()
135135
*
136136
* @property _interactive
137137
* @type Boolean
138-
* @readonly
138+
* @readOnly
139139
* @private
140140
*/
141141
this._interactive = false;
@@ -154,7 +154,7 @@ PIXI.DisplayObject = function()
154154
*
155155
* @property worldTransform
156156
* @type Matrix
157-
* @readonly
157+
* @readOnly
158158
* @private
159159
*/
160160
this.worldTransform = new PIXI.Matrix();

src/pixi/display/DisplayObjectContainer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ PIXI.DisplayObjectContainer = function()
1919
*
2020
* @property children
2121
* @type Array(DisplayObject)
22-
* @readonly
22+
* @readOnly
2323
*/
2424
this.children = [];
2525

src/pixi/display/MovieClip.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ PIXI.MovieClip = function(textures)
5454
* @property currentFrame
5555
* @type Number
5656
* @default 0
57-
* @readonly
57+
* @readOnly
5858
*/
5959
this.currentFrame = 0;
6060

@@ -63,7 +63,7 @@ PIXI.MovieClip = function(textures)
6363
*
6464
* @property playing
6565
* @type Boolean
66-
* @readonly
66+
* @readOnly
6767
*/
6868
this.playing = false;
6969
};
@@ -79,7 +79,7 @@ PIXI.MovieClip.prototype.constructor = PIXI.MovieClip;
7979
* @property totalFrames
8080
* @type Number
8181
* @default 0
82-
* @readonly
82+
* @readOnly
8383
*/
8484
Object.defineProperty( PIXI.MovieClip.prototype, 'totalFrames', {
8585
get: function() {

src/pixi/display/Stage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ PIXI.Stage = function(backgroundColor)
2727
*
2828
* @property worldTransform
2929
* @type Matrix
30-
* @readonly
30+
* @readOnly
3131
* @private
3232
*/
3333
this.worldTransform = new PIXI.Matrix();

src/pixi/loaders/BitmapFontLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ PIXI.BitmapFontLoader = function(url, crossorigin)
3737
*
3838
* @property baseUrl
3939
* @type String
40-
* @readonly
40+
* @readOnly
4141
*/
4242
this.baseUrl = url.replace(/[^\/]*$/, '');
4343

src/pixi/loaders/ImageLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ PIXI.ImageLoader = function(url, crossorigin)
2929
*
3030
* @property frames
3131
* @type Array
32-
* @readonly
32+
* @readOnly
3333
*/
3434
this.frames = [];
3535
};

src/pixi/loaders/JsonLoader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ PIXI.JsonLoader = function (url, crossorigin) {
3535
*
3636
* @property baseUrl
3737
* @type String
38-
* @readonly
38+
* @readOnly
3939
*/
4040
this.baseUrl = url.replace(/[^\/]*$/, '');
4141

@@ -44,7 +44,7 @@ PIXI.JsonLoader = function (url, crossorigin) {
4444
*
4545
* @property loaded
4646
* @type Boolean
47-
* @readonly
47+
* @readOnly
4848
*/
4949
this.loaded = false;
5050

src/pixi/loaders/SpineLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ PIXI.SpineLoader = function(url, crossorigin)
4444
*
4545
* @property loaded
4646
* @type Boolean
47-
* @readonly
47+
* @readOnly
4848
*/
4949
this.loaded = false;
5050
};

src/pixi/loaders/SpriteSheetLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PIXI.SpriteSheetLoader = function (url, crossorigin) {
4040
*
4141
* @property baseUrl
4242
* @type String
43-
* @readonly
43+
* @readOnly
4444
*/
4545
this.baseUrl = url.replace(/[^\/]*$/, '');
4646

src/pixi/text/BitmapText.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ PIXI.BitmapText = function(text, style)
2626
*
2727
* @property textWidth
2828
* @type Number
29-
* @readonly
29+
* @readOnly
3030
*/
3131
this.textWidth = 0;
3232

@@ -36,7 +36,7 @@ PIXI.BitmapText = function(text, style)
3636
*
3737
* @property textHeight
3838
* @type Number
39-
* @readonly
39+
* @readOnly
4040
*/
4141
this.textHeight = 0;
4242

0 commit comments

Comments
 (0)