diff options
author | Jon Reid | 2012-06-14 14:30:16 -0700 |
---|---|---|
committer | Jon Reid | 2012-06-14 14:30:16 -0700 |
commit | 0bb16b6a7aa392b9e26eb9787542da9a274c4960 (patch) | |
tree | 72cf5f580f32c5f21f573c7812a3a387917ab01e /js/panels/Timeline/EasingMenu.reel/EasingMenu.html | |
parent | 0d080d97141cd08855e14a63fa3fee062663cd7d (diff) | |
parent | 53bb51a38edc6fe7cc80c43d34027590a22a1d32 (diff) | |
download | ninja-0bb16b6a7aa392b9e26eb9787542da9a274c4960.tar.gz |
Merge branch 'new-easing-menu' into timeline-local
Diffstat (limited to 'js/panels/Timeline/EasingMenu.reel/EasingMenu.html')
-rw-r--r-- | js/panels/Timeline/EasingMenu.reel/EasingMenu.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/js/panels/Timeline/EasingMenu.reel/EasingMenu.html b/js/panels/Timeline/EasingMenu.reel/EasingMenu.html new file mode 100644 index 00000000..82218b45 --- /dev/null +++ b/js/panels/Timeline/EasingMenu.reel/EasingMenu.html | |||
@@ -0,0 +1,34 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> --> | ||
7 | <html lang="en"> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | <link rel="stylesheet" type="text/css" href="css/EasingMenu.css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "owner": { | ||
14 | "prototype": "js/panels/Timeline/EasingMenu.reel", | ||
15 | "properties": { | ||
16 | "element": {"#": "container-easing-menu"} | ||
17 | |||
18 | } | ||
19 | } | ||
20 | } | ||
21 | </script> | ||
22 | </head> | ||
23 | <body> | ||
24 | <div data-montage-id="container-easing-menu" class="container-easing-choices"> | ||
25 | <ul data-montage-id="easing_choices" class="easing-choices"> | ||
26 | <li data-ninja-ease="ease">ease</li> | ||
27 | <li data-ninja-ease="ease-out" class="easing-selected">ease-out</li> | ||
28 | <li data-ninja-ease="ease-in">ease-in</li> | ||
29 | <li data-ninja-ease="ease-in-out">ease-in-out</li> | ||
30 | <li data-ninja-ease="linear">linear</li> | ||
31 | </ul> | ||
32 | </div> | ||
33 | </body> | ||
34 | </html> \ No newline at end of file | ||