diff options
author | Jose Antonio Marquez | 2012-06-21 16:53:46 -0700 |
---|---|---|
committer | Jose Antonio Marquez | 2012-06-21 16:53:46 -0700 |
commit | 9a568f56b2684e268975231544a80db78497db02 (patch) | |
tree | 5e76e47dbec5e5581c9d96beb312c6bbeb910082 /js/clipboard/util.js | |
parent | 1e9af08f42e4ba18fc8c5a8501d8cbecec0f4fe8 (diff) | |
parent | 2af33f19de48bb8fe269c51ceddd1bc1f591651f (diff) | |
download | ninja-9a568f56b2684e268975231544a80db78497db02.tar.gz |
Merge branch 'refs/heads/Ninja-Internal' into Color
Diffstat (limited to 'js/clipboard/util.js')
-rw-r--r-- | js/clipboard/util.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/js/clipboard/util.js b/js/clipboard/util.js new file mode 100644 index 00000000..a0813855 --- /dev/null +++ b/js/clipboard/util.js | |||
@@ -0,0 +1,28 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
7 | //////////////////////////////////////////////////////////////////////// | ||
8 | // | ||
9 | |||
10 | var Montage = require("montage/core/core").Montage, | ||
11 | Component = require("montage/ui/component").Component; | ||
12 | |||
13 | var ClipboardUtil = exports.ClipboardUtil = Montage.create(Component, { | ||
14 | |||
15 | deserializeHtmlString:{ | ||
16 | value:function(htmlString){ | ||
17 | var doc = (this.application.ninja.currentDocument.currentView === "design") ? this.application.ninja.currentDocument.model.views.design.document : document, | ||
18 | clipboardHelper=doc.createElement("div"), | ||
19 | nodeList = null; | ||
20 | |||
21 | clipboardHelper.innerHTML = htmlString; | ||
22 | nodeList = clipboardHelper.childNodes; | ||
23 | clipboardHelper = null; //for garbage collection | ||
24 | return nodeList; | ||
25 | } | ||
26 | } | ||
27 | |||
28 | }); \ No newline at end of file | ||