OLD | NEW |
| (Empty) |
1 <!-- | |
2 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
3 -- Use of this source code is governed by a BSD-style license that can be | |
4 -- found in the LICENSE file. | |
5 --> | |
6 | |
7 <!-- | |
8 Load this page into a tab or an iframe, then set the gallery up like this: | |
9 | |
10 iframe.contentWindow.Gallery.open(parentDirEntry, entries, closeCallback); | |
11 --> | |
12 <html> | |
13 <head> | |
14 <link rel="stylesheet" type="text/css" href="image_editor.css"/> | |
15 <link rel="stylesheet" type="text/css" href="gallery.css"/> | |
16 <link rel="stylesheet" type="text/css" href="media_controls.css"/> | |
17 | |
18 <script type="text/javascript" src="image_util.js"></script> | |
19 <script type="text/javascript" src="viewport.js"></script> | |
20 <script type="text/javascript" src="image_buffer.js"></script> | |
21 <script type="text/javascript" src="image_view.js"></script> | |
22 <script type="text/javascript" src="commands.js"></script> | |
23 <script type="text/javascript" src="image_editor.js"></script> | |
24 <script type="text/javascript" src="image_transform.js"></script> | |
25 <script type="text/javascript" src="image_adjust.js"></script> | |
26 <script type="text/javascript" src="filter.js"></script> | |
27 <script type="text/javascript" src="gallery.js"></script> | |
28 | |
29 <script type="text/javascript" src="image_encoder.js"></script> | |
30 <script type="text/javascript" src="exif_encoder.js"></script> | |
31 | |
32 <script type="text/javascript" src="media_controls.js"></script> | |
33 | |
34 </head> | |
35 <body> | |
36 <div class="gallery"></div> | |
37 </body> | |
38 </html> | |
OLD | NEW |