diff options
author | adhitya | 2016-04-12 07:02:39 +0000 |
---|---|---|
committer | adhitya | 2016-04-12 07:02:39 +0000 |
commit | dd83478e3fcaac98de690aa59e6288ad41a1c351 (patch) | |
tree | 38653bdf0ae95053f66777c4ac3fe5be5d8fbd33 /src/js/io/mxRootChangeCodec.js | |
parent | 92f3207b50a1caca07df5c5b238212af3358905b (diff) | |
download | xcos-on-web-dd83478e3fcaac98de690aa59e6288ad41a1c351.tar.gz xcos-on-web-dd83478e3fcaac98de690aa59e6288ad41a1c351.tar.bz2 xcos-on-web-dd83478e3fcaac98de690aa59e6288ad41a1c351.zip |
Keyboard shortcuts work properly
Diffstat (limited to 'src/js/io/mxRootChangeCodec.js')
-rw-r--r-- | src/js/io/mxRootChangeCodec.js | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/src/js/io/mxRootChangeCodec.js b/src/js/io/mxRootChangeCodec.js deleted file mode 100644 index fda613a..0000000 --- a/src/js/io/mxRootChangeCodec.js +++ /dev/null @@ -1,83 +0,0 @@ -/** - * $Id: mxRootChangeCodec.js,v 1.6 2010-09-15 14:38:51 gaudenz Exp $ - * Copyright (c) 2006-2010, JGraph Ltd - */ -mxCodecRegistry.register(function() -{ - /** - * Class: mxRootChangeCodec - * - * Codec for <mxRootChange>s. This class is created and registered - * dynamically at load time and used implicitely via <mxCodec> and - * the <mxCodecRegistry>. - * - * Transient Fields: - * - * - model - * - previous - * - root - */ - var codec = new mxObjectCodec(new mxRootChange(), - ['model', 'previous', 'root']); - - /** - * Function: onEncode - * - * Encodes the child recursively. - */ - codec.afterEncode = function(enc, obj, node) - { - enc.encodeCell(obj.root, node); - - return node; - }; - - /** - * Function: beforeDecode - * - * Decodes the optional children as cells - * using the respective decoder. - */ - codec.beforeDecode = function(dec, node, obj) - { - if (node.firstChild != null && - node.firstChild.nodeType == mxConstants.NODETYPE_ELEMENT) - { - // Makes sure the original node isn't modified - node = node.cloneNode(true); - - var tmp = node.firstChild; - obj.root = dec.decodeCell(tmp, false); - - var tmp2 = tmp.nextSibling; - tmp.parentNode.removeChild(tmp); - tmp = tmp2; - - while (tmp != null) - { - tmp2 = tmp.nextSibling; - dec.decodeCell(tmp); - tmp.parentNode.removeChild(tmp); - tmp = tmp2; - } - } - - return node; - }; - - /** - * Function: afterDecode - * - * Restores the state by assigning the previous value. - */ - codec.afterDecode = function(dec, node, obj) - { - obj.previous = obj.root; - - return obj; - }; - - // Returns the codec into the registry - return codec; - -}()); |