main_list_item_home.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*------------------------------------------------------------------------------------------------------------------------
  2. @package: arkiwiJsBoilerplate
  3. @author: cek
  4. @www: arkiwi.oeg
  5. @copyright: COPYRIGHT 18 cek
  6. @license: MIT
  7. =============================================================================
  8. Filename: main.js
  9. =============================================================================
  10. This file is the main entry point for js on the arkiwiJsBoilerplate app.
  11. --------------------------------------------------------------------------------------------------------------------- */
  12. $(document).ready(function () {
  13. var arkiwi = new ARKIWI.Aggregator('http://www.arkiwi.org');
  14. $.get("templates/list_item_home.txt", function (template) {
  15. arkiwi.path("XM24/Occupy_Mordor", function (listone) {
  16. var dioporco = Mustache.render(template, listone);
  17. $(".row").append(dioporco);
  18. }, true);
  19. });
  20. arkiwi.search('Ampioraggio', function (result) {
  21. console.log('Ricerca...');
  22. console.log(result);
  23. });
  24. arkiwi.path('XM24/Occupy_Mordor', function (result) {
  25. console.log('Lettura cartella...');
  26. console.log(result);
  27. }, true);
  28. });