Skip to content

Commit 5ccd392

Browse files
committed
Merge pull request #3227 from VisualSJ/develop-3.10
Parser improvement
2 parents 64ff7a3 + a95c336 commit 5ccd392

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Diff for: extensions/cocostudio/loader/parsers/action-2.x.js

+1
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@
304304
});
305305
});
306306

307+
load.registerParser("action", "2.*", parser);
307308
load.registerParser("action", "*", parser);
308309

309310
})(ccs._load, ccs._parser);

Diff for: extensions/cocostudio/loader/parsers/timelineParser-2.x.js

+1
Original file line numberDiff line numberDiff line change
@@ -1398,6 +1398,7 @@
13981398
});
13991399

14001400

1401+
load.registerParser("timeline", "2.*", parser);
14011402
load.registerParser("timeline", "*", parser);
14021403

14031404

Diff for: extensions/cocostudio/loader/parsers/uiParser-1.x.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@
613613
if(ph)
614614
widget.setPlaceHolder(ph);
615615
widget.setString(options["text"]||"");
616-
var fs = options["fontSize1"];
616+
var fs = options["fontSize"];
617617
if(fs)
618618
widget.setFontSize(fs);
619619
var fn = options["fontName"];

0 commit comments

Comments
 (0)