diff options
author | Valerio Virgillito | 2012-05-08 17:36:57 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-08 17:36:57 -0700 |
commit | f8c467bd268e10d4f07136ca932c6eaffc94bc12 (patch) | |
tree | 16c9785629451a461f855cba4b4e36f28e639a8c /js/document/templates | |
parent | b425025001c0ef0ea0ea8439d60a133c3fac61b0 (diff) | |
parent | ef1daccfad5381badd53b9d045c2687f9b0e090d (diff) | |
download | ninja-f8c467bd268e10d4f07136ca932c6eaffc94bc12.tar.gz |
Merge pull request #204 from joseeight/Document
I/O: Adding Save Functionality
Diffstat (limited to 'js/document/templates')
-rwxr-xr-x | js/document/templates/montage-web/index.html | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/js/document/templates/montage-web/index.html b/js/document/templates/montage-web/index.html index 6bd5ce7a..e02d8d8e 100755 --- a/js/document/templates/montage-web/index.html +++ b/js/document/templates/montage-web/index.html | |||
@@ -5,13 +5,20 @@ | |||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | 5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. |
6 | </copyright> --> | 6 | </copyright> --> |
7 | 7 | ||
8 | |||
9 | <!-- | ||
10 | NOTE(s): | ||
11 | All elements in the head of the document to be exclude from I/O | ||
12 | must set the 'data-ninja-template' | ||
13 | data-ninja-template="true" | ||
14 | --> | ||
8 | <html> | 15 | <html> |
9 | 16 | ||
10 | <head> | 17 | <head> |
11 | 18 | ||
12 | <title>Ninja Prototype</title> | 19 | <title data-ninja-template="true">Ninja Prototype</title> |
13 | 20 | ||
14 | <style type="text/css" id="nj-stage-stylesheet"> | 21 | <style type="text/css" id="nj-stage-stylesheet" data-ninja-template="true"> |
15 | * { | 22 | * { |
16 | -webkit-transition-duration: 0s !important; | 23 | -webkit-transition-duration: 0s !important; |
17 | -webkit-animation-duration: 0s !important; | 24 | -webkit-animation-duration: 0s !important; |
@@ -49,15 +56,15 @@ | |||
49 | } | 56 | } |
50 | </style> | 57 | </style> |
51 | 58 | ||
52 | <script type="text/javascript" data-package="." src="../../../../node_modules/montage/montage.js"></script> | 59 | <script type="text/javascript" data-package="." src="../../../../node_modules/montage/montage.js" data-ninja-template="true"></script> |
53 | 60 | ||
54 | <script type="text/javascript"> | 61 | <script type="text/javascript" data-ninja-template="true"> |
55 | function getElement(x,y) { | 62 | function getElement(x,y) { |
56 | return document.elementFromPoint(x,y); | 63 | return document.elementFromPoint(x,y); |
57 | } | 64 | } |
58 | </script> | 65 | </script> |
59 | 66 | ||
60 | <script type="text/montage-serialization"> | 67 | <script type="text/montage-serialization" data-ninja-template="true"> |
61 | { | 68 | { |
62 | "owner": { | 69 | "owner": { |
63 | "prototype": "main" | 70 | "prototype": "main" |