| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!DOCTYPE html>
- <html ng-app="app">
- <head>
- <script src="https://simulacra.js.org/simulacra.min.js"></script>
- <link href="styles.css" rel="stylesheet" type="text/css" />
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <script>
- var state = {};
- window.onload = function() {
- state = {
- currently_processing: [{
- "KEY": "book_Brandon Sanderson - Children of the Nameless (epub).rar",
- "STEP": "REQUESTED",
- "STATE": "100"
- },
- ],
- search_results: [{"bot": "Ook", "book": "Brandon Sanderson - Children of the Nameless (epub).rar"}, {"bot": "Pondering42", "book": "Brandon Sanderson - Children of the Nameless (epub).rar"}, {"bot": "dragnbreaker", "book": "Brandon Sanderson - Children of the Nameless (epub).rar"}, {"bot": "Pondering42", "book": "Brandon Sanderson - [Elantris SS] - The Hope of Elantris (epub).rar"}, {"bot": "Pondering42", "book": "Brandon Sanderson - [Elantris SS] - The Hope of Elantris (lit).rar"}, {"bot": "Pondering42", "book": "Brandon Sanderson - [Elantris SS] - The Hope of Elantris (mobi).rar"}, {"bot": "Ook", "book": "Brandon Sanderson - Mistborn 01-06 & SS (epub).rar"}, {"bot": "Pondering42", "book": "Brandon Sanderson - [ss] Firstborn (v5.0) (epub).rar"}, {"bot": "Pondering42", "book": "Brandon Sanderson - [ss] Firstborn (v5.0) (mobi).rar"}, {"bot": "Pondering42", "book": "Brandon Sanderson - ss - The Hope of Elantris (epub).rar"}, {"bot": "Ook", "book": "Magazine - Grimdark - Issue 004 - Ricahrd Ford, Brandon Sanderson, Mike Brooks, Peter V Brett, Matthew Ward (epub).rar"}, {"bot": "Pondering42", "book": "Magazine - Grimdark - Issue 004 - Ricahrd Ford, Brandon Sanderson, Mike Brooks, Peter V Brett, Matthew Ward (epub).rar"}, {"bot": "Ook", "book": "Magazine - Grimdark - Issue 004 - Ricahrd Ford, Brandon Sanderson, Mike Brooks, Peter V Brett, Matthew Ward (mobi).rar"}, {"bot": "Pondering42", "book": "Magazine - Grimdark - Issue 004 - Ricahrd Ford, Brandon Sanderson, Mike Brooks, Peter V Brett, Matthew Ward (mobi).rar"}],
- available_files: ['a', 'b'],
- };
- var bindObject = window.simulacra;
- var template = document.getElementById('product')
-
- var node = bindObject(state, [ template, {
- currently_processing: ['.currently_processing', {
- KEY: '.key',
- STEP: '.step',
- STATE: '.state',
- }],
- search_results: ['.search_results', {
- bot: '.bot',
- book: '.book',
- }],
- available_files: '.available_files'
- } ]);
- document.body.appendChild(node);
- }
- </script>
- </head>
- <body>
- <template id="product">
- <span class="currently_processing">
- <div>
- <span class="key"></span>
- <span class="step"></span>
- <span class="state"></span>
- </div>
- </span>
- ############
- <div class="search_results">
- <div>
- <span class="bot"></span>
- <span class="book"></span>
- </div>
- </div>
- ############
- <p class="available_files"></p>
- </template>
- </body>
- </html>
|