Add fully qualified function calls, shuffle a couple tiny functions into svgutils.js, add an empty coords.js module for later

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@2390 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Jeff Schiller
2013-02-14 15:19:46 +00:00
parent e150132453
commit a779a74aa9
7 changed files with 262 additions and 193 deletions

27
editor/coords.js Normal file
View File

@@ -0,0 +1,27 @@
/**
* Coords.
*
* Licensed under the MIT License
*
*/
// Dependencies:
// 1) svgtransformlist.js
// 2) math.js
// 3) svgutils.js
// 4) jquery.js
// 5) history.js
var svgedit = svgedit || {};
(function() {
if (!svgedit.coords) {
svgedit.coords = {};
}
// TODO: Move remapElement() into here.
// TODO: Move updateClipPath() into here.
// TODO: Move recalculateDimensions() into here.
})();