Skip to content

Commit 9c96836

Browse files
chernetskygrasshoppergn
authored andcommitted
DVF-2643 default tooltip formatting and linter updated to 2.3.19
1 parent 4a03e90 commit 9c96836

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/vector/Element.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ acgraph.vector.Element.prototype.getFullChildrenCount = function() {
483483

484484
/**
485485
* Gets/sets element's title value.
486-
* @param {(string|null)=} opt_value - Value to be set.
486+
* @param {?string=} opt_value - Value to be set.
487487
* @return {(string|null|acgraph.vector.Element|undefined)} - Current value or itself for method chaining.
488488
*/
489489
acgraph.vector.Element.prototype.title = function(opt_value) {
@@ -500,7 +500,7 @@ acgraph.vector.Element.prototype.title = function(opt_value) {
500500

501501
/**
502502
* Gets/sets element's desc value.
503-
* @param {(string|null)=} opt_value - Value to be set.
503+
* @param {?string=} opt_value - Value to be set.
504504
* @return {(string|null|acgraph.vector.Element|undefined)} - Current value or itself for method chaining.
505505
*/
506506
acgraph.vector.Element.prototype.desc = function(opt_value) {

src/vector/Stage.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2247,7 +2247,7 @@ acgraph.vector.Stage.prototype.childClipChanged = goog.nullFunction;
22472247

22482248
/**
22492249
* Gets/sets element's title value.
2250-
* @param {(string|null)=} opt_value - Value to be set.
2250+
* @param {?string=} opt_value - Value to be set.
22512251
* @return {(string|null|!acgraph.vector.Stage|undefined)} - Current value or itself for method chaining.
22522252
*/
22532253
acgraph.vector.Stage.prototype.title = function(opt_value) {
@@ -2265,7 +2265,7 @@ acgraph.vector.Stage.prototype.title = function(opt_value) {
22652265

22662266
/**
22672267
* Gets/sets element's desc value.
2268-
* @param {(string|null)=} opt_value - Value to be set.
2268+
* @param {?string=} opt_value - Value to be set.
22692269
* @return {(string|null|!acgraph.vector.Stage|undefined)} - Current value or itself for method chaining.
22702270
*/
22712271
acgraph.vector.Stage.prototype.desc = function(opt_value) {

src/vector/svg/Renderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ acgraph.vector.svg.Renderer.prototype.isImageLoading = function() {
328328
/**
329329
* Serializes a given Path and converts its data to a String which can be used in SVG.
330330
* @param {acgraph.vector.PathBase} path The Path to serialize.
331-
* @return {(string|null)} A representation which can be used in SVG.
331+
* @return {?string} A representation which can be used in SVG.
332332
* @private
333333
*/
334334
acgraph.vector.svg.Renderer.prototype.getSvgPath_ = function(path) {

src/vector/vml/Renderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ acgraph.vector.vml.Renderer.prototype.setPositionAndSize_ = function(element, x,
595595
* Serializes Path and converts it into string that can be used in VML.
596596
* @param {acgraph.vector.PathBase} path Path.
597597
* @param {boolean=} opt_transformed Use transformed instead of original.
598-
* @return {(string|null)} VML acceptable path.
598+
* @return {?string} VML acceptable path.
599599
* @private
600600
*/
601601
acgraph.vector.vml.Renderer.prototype.getVmlPath_ = function(path, opt_transformed) {

0 commit comments

Comments
 (0)