|
OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <html> | |
3 <head> | |
4 <script> | |
5 | |
6 var last_file_entries = null; | |
7 | |
8 function getLastFileEntries() { | |
9 return last_file_entries; | |
10 } | |
11 | |
12 chrome.fileBrowserHandler.onExecute.addListener( | |
13 function(id, file_entries) { | |
14 last_file_entries = file_entries; | |
15 | |
16 chrome.tabs.create({ | |
17 url: "slideshow.html" | |
18 }); | |
19 } | |
20 ); | |
21 </script> | |
22 </body> | |
23 </html> | |
OLD | NEW |