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 |
| 17 <script type="text/javascript" src="image_util.js"></script> |
| 18 <script type="text/javascript" src="viewport.js"></script> |
| 19 <script type="text/javascript" src="image_buffer.js"></script> |
| 20 <script type="text/javascript" src="image_editor.js"></script> |
| 21 <script type="text/javascript" src="image_transform.js"></script> |
| 22 <script type="text/javascript" src="image_adjust.js"></script> |
| 23 <script type="text/javascript" src="filter.js"></script> |
| 24 <script type="text/javascript" src="gallery.js"></script> |
| 25 |
| 26 <script type="text/javascript" src="image_encoder.js"></script> |
| 27 <script type="text/javascript" src="exif_encoder.js"></script> |
| 28 |
| 29 </head> |
| 30 <body> |
| 31 <div class="gallery"></div> |
| 32 </body> |
| 33 </html> |
OLD | NEW |