after some more thought, I've decided to remove the Plugins namespace, but keep the plugins directory. I don't want 3rd parties putting some things in the Kinetic namespace, while others put things in the Plugin space. I really don't see a real need for the namespacing. For organizational purposes, the plugins directory still makes sense, however.

This commit is contained in:
Eric Rowell
2013-03-24 20:42:27 -07:00
parent 3c63b13c95
commit 5192ccd954
15 changed files with 153 additions and 154 deletions

View File

@@ -528,7 +528,7 @@ Test.Modules.PERFORMANCE = {
startTimer();
for(var n = 0; n < 1000; n++) {
var star = new Kinetic.Plugins.Star({
var star = new Kinetic.Star({
innerRadius: 20,
outerRadius: 50,
fill: 'yellow',
@@ -560,7 +560,7 @@ Test.Modules.PERFORMANCE = {
});
var layer = new Kinetic.Layer();
var star = new Kinetic.Plugins.Star({
var star = new Kinetic.Star({
innerRadius: 20,
outerRadius: 50,
fill: 'yellow',