mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 18:24:17 +08:00
change some defaults and change messages
This commit is contained in:
parent
f256e05d75
commit
363f9943c5
@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [new version][unreleased]
|
||||
|
||||
### Changed
|
||||
|
||||
* Default duration for tweens and `node.to()` methods is now 300ms
|
||||
|
||||
|
||||
## [2.2.1][2018-08-10]
|
||||
|
||||
### Added
|
||||
|
18
konva.js
18
konva.js
@ -2,7 +2,7 @@
|
||||
* Konva JavaScript Framework v2.2.1
|
||||
* http://konvajs.github.io/
|
||||
* Licensed under the MIT
|
||||
* Date: Fri Aug 10 2018
|
||||
* Date: Mon Aug 13 2018
|
||||
*
|
||||
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
|
||||
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
|
||||
@ -7881,15 +7881,13 @@
|
||||
for (n = 0; n < len; n++) {
|
||||
sel = selectorArr[n];
|
||||
if (!Konva.Util.isValidSelector(sel)) {
|
||||
Konva.Util.warn(
|
||||
var message =
|
||||
'Selector "' +
|
||||
sel +
|
||||
'" is invalid. Allowed selectors examples are "#foo", ".bar" or "Group".'
|
||||
);
|
||||
Konva.Util.warn(
|
||||
'If you have a custom shape with such className, please change it to start with upper letter like "Triangle".'
|
||||
);
|
||||
Konva.Util.warn('Konva is awesome, right?');
|
||||
sel +
|
||||
'" is invalid. Allowed selectors examples are "#foo", ".bar" or "Group".\n' +
|
||||
'If you have a custom shape with such className, please change it to start with upper letter like "Triangle".\n' +
|
||||
'Konva is awesome, right?';
|
||||
Konva.Util.warn(message);
|
||||
}
|
||||
// id selector
|
||||
if (sel.charAt(0) === '#') {
|
||||
@ -12165,7 +12163,7 @@
|
||||
key;
|
||||
|
||||
if (typeof config.duration === 'undefined') {
|
||||
duration = 1;
|
||||
duration = 0.3;
|
||||
} else if (config.duration === 0) {
|
||||
// zero is bad value for duration
|
||||
duration = 0.001;
|
||||
|
4
konva.min.js
vendored
4
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -233,15 +233,13 @@
|
||||
for (n = 0; n < len; n++) {
|
||||
sel = selectorArr[n];
|
||||
if (!Konva.Util.isValidSelector(sel)) {
|
||||
Konva.Util.warn(
|
||||
var message =
|
||||
'Selector "' +
|
||||
sel +
|
||||
'" is invalid. Allowed selectors examples are "#foo", ".bar" or "Group".'
|
||||
);
|
||||
Konva.Util.warn(
|
||||
'If you have a custom shape with such className, please change it to start with upper letter like "Triangle".'
|
||||
);
|
||||
Konva.Util.warn('Konva is awesome, right?');
|
||||
sel +
|
||||
'" is invalid. Allowed selectors examples are "#foo", ".bar" or "Group".\n' +
|
||||
'If you have a custom shape with such className, please change it to start with upper letter like "Triangle".\n' +
|
||||
'Konva is awesome, right?';
|
||||
Konva.Util.warn(message);
|
||||
}
|
||||
// id selector
|
||||
if (sel.charAt(0) === '#') {
|
||||
|
@ -156,7 +156,7 @@
|
||||
key;
|
||||
|
||||
if (typeof config.duration === 'undefined') {
|
||||
duration = 1;
|
||||
duration = 0.3;
|
||||
} else if (config.duration === 0) {
|
||||
// zero is bad value for duration
|
||||
duration = 0.001;
|
||||
|
Loading…
Reference in New Issue
Block a user