some cleaning

This commit is contained in:
lavrton 2015-02-26 08:21:59 +07:00
parent ff983ea8c0
commit e1051b2b00
5 changed files with 34 additions and 26 deletions

View File

@ -5,7 +5,10 @@ src
docs
test
.travis.yml
.idea
Gruntfile.js
resources
api
bower-template.json
bower.json
presentation-schedule.md

View File

@ -199,16 +199,6 @@ module.exports = function(grunt) {
dest: 'konva.js'
}
},
shell: {
jsdoc: {
options: {
stdout: true,
stderr : true,
failOnError : true
},
command: './node_modules/.bin/jsdoc ./dist/konva-v<%= pkg.version %>.js -d ./docs'
}
},
mocha_phantomjs: {
all: ['test/runner.html']
},
@ -223,9 +213,9 @@ module.exports = function(grunt) {
},
jsdoc : {
dist : {
src: ['README.md', './dist/konva-v<%= pkg.version %>.js'],
src: ['./dist/konva-v<%= pkg.version %>.js'],
options: {
destination: 'api',
destination: 'docs',
template : './node_modules/grunt-jsdoc/node_modules/ink-docstrap/template',
configure : './resources/jsdoc.conf.json'
}
@ -261,11 +251,6 @@ module.exports = function(grunt) {
]);
grunt.registerTask('docs', 'Generate docs', [
'full',
'shell:jsdoc'
]);
grunt.registerTask('api', 'Generate docs for homepage', [
'full',
'jsdoc'
]);

View File

@ -3,7 +3,7 @@
* Konva JavaScript Framework v0.9.0
* http://konvajs.github.io/
* Licensed under the MIT or GPL Version 2 licenses.
* Date: 2015-02-17
* Date: 2015-02-26
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - 2015 by Anton Lavrenov (Konva)
@ -7021,6 +7021,30 @@ var Konva = {};
}
};
/**
* Tween node properties. Shorter usage of {@link Konva.Tween} object.
*
* @method Konva.Node#to
* @memberof Konva.Node
* @param {Object} [params] tween params
* @example
*
* circle.to({
* x : 50,
* duration : 0.5
* });
*/
Konva.Node.prototype.to = function(params) {
var onFinish = params.onFinish;
params.node = this;
params.onFinish = function() {
tween.destroy();
onFinish();
};
var tween = new Konva.Tween(params);
tween.play();
};
var Tween = function(prop, propFunc, func, begin, finish, duration, yoyo) {
this.prop = prop;
this.propFunc = propFunc;

6
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -19,11 +19,7 @@
"linenums" : true,
"collapseSymbols" : false,
"inverseNav" : true,
"highlightTutorialCode" : true,
"analytics" : {
"ua" : "UA-54202824-2",
"domain" : "http://konvajs.github.io"
}
"highlightTutorialCode" : true
},
"markdown" : {
"parser" : "gfm",