|
|
@ -2455,7 +2455,7 @@ Network.prototype._classicRedraw = function () { |
|
|
|
}; |
|
|
|
|
|
|
|
/** |
|
|
|
* Returns true when the Timeline is active. |
|
|
|
* Returns true when the Network is active. |
|
|
|
* @returns {boolean} |
|
|
|
*/ |
|
|
|
Network.prototype.isActive = function () { |
|
|
@ -2463,5 +2463,23 @@ Network.prototype.isActive = function () { |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* Sets the scale |
|
|
|
* @returns {Number} |
|
|
|
*/ |
|
|
|
Network.prototype.setScale = function () { |
|
|
|
return this._setScale(); |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* Returns the scale |
|
|
|
* @returns {Number} |
|
|
|
*/ |
|
|
|
Network.prototype.getScale = function () { |
|
|
|
return this._getScale(); |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = Network; |