Enhancement : Rename layers

- added rename icon in layers list
- mutualized CSS for edit icon between palette manager and layers list
- new CSS file icons.css for actions/links/buttons using icons
- layers are no longer retrieved by name, but by index
This commit is contained in:
jdescottes
2014-04-09 23:24:25 +02:00
parent 644b72cc6e
commit 39d7d4d8c8
10 changed files with 66 additions and 23 deletions

View File

@@ -27,6 +27,10 @@
return this.name;
};
ns.Layer.prototype.setName = function (name) {
this.name = name;
};
ns.Layer.prototype.getFrames = function () {
return this.frames;
};