diff options
author | Jose Antonio Marquez | 2012-06-21 16:54:13 -0700 |
---|---|---|
committer | Jose Antonio Marquez | 2012-06-21 16:54:13 -0700 |
commit | 8d0c07b6734d874b481bb4866466de8f863a67a7 (patch) | |
tree | 564528119093e4e3408ccf180d55ac3d5e413813 /js/clipboard/internal-ops/timeline-clipboard-agent.js | |
parent | d9f2064fc7dc5284e159032e3efbab5de9b2dc14 (diff) | |
parent | 2af33f19de48bb8fe269c51ceddd1bc1f591651f (diff) | |
download | ninja-8d0c07b6734d874b481bb4866466de8f863a67a7.tar.gz |
Merge branch 'refs/heads/Ninja-Internal' into Document
Diffstat (limited to 'js/clipboard/internal-ops/timeline-clipboard-agent.js')
-rw-r--r-- | js/clipboard/internal-ops/timeline-clipboard-agent.js | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/js/clipboard/internal-ops/timeline-clipboard-agent.js b/js/clipboard/internal-ops/timeline-clipboard-agent.js new file mode 100644 index 00000000..c086431e --- /dev/null +++ b/js/clipboard/internal-ops/timeline-clipboard-agent.js | |||
@@ -0,0 +1,40 @@ | |||
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 TimelineClipboardAgent = exports.TimelineClipboardAgent = Montage.create(Component, { | ||
14 | |||
15 | copy:{ | ||
16 | value: function(clipboardEvent){ | ||
17 | |||
18 | } | ||
19 | }, | ||
20 | |||
21 | cut:{ | ||
22 | value:function(clipboardEvent){ | ||
23 | |||
24 | } | ||
25 | |||
26 | }, | ||
27 | |||
28 | pasteFromCopy:{ | ||
29 | value:function(){ | ||
30 | |||
31 | } | ||
32 | }, | ||
33 | |||
34 | pasteFromCut:{ | ||
35 | value:function(){ | ||
36 | |||
37 | } | ||
38 | } | ||
39 | |||
40 | }); \ No newline at end of file | ||