aggiunta ignore all tilde
This commit is contained in:
parent
7693a3d3eb
commit
6f1f9695de
2 changed files with 11 additions and 34 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -1,3 +1,14 @@
|
||||||
|
|
||||||
|
# ignore all bin directories
|
||||||
|
# matches "bin" in any subfolder
|
||||||
|
bin/
|
||||||
|
|
||||||
|
# ignore all target directories
|
||||||
|
target/
|
||||||
|
|
||||||
|
# ignore all files ending with ~
|
||||||
|
*~
|
||||||
|
|
||||||
.tmp
|
.tmp
|
||||||
bower_components
|
bower_components
|
||||||
node_modules
|
node_modules
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
/*------------------------------------------------------------------------------------------------------------------------
|
|
||||||
@package: arkiwiJsBoilerplate
|
|
||||||
|
|
||||||
@author: cek
|
|
||||||
@www: arkiwi.oeg
|
|
||||||
|
|
||||||
@copyright: COPYRIGHT 18 cek
|
|
||||||
@license: MIT
|
|
||||||
|
|
||||||
=============================================================================
|
|
||||||
Filename: main.js
|
|
||||||
=============================================================================
|
|
||||||
This file is the main entry point for js on the arkiwiJsBoilerplate app.
|
|
||||||
--------------------------------------------------------------------------------------------------------------------- */
|
|
||||||
$(document).ready(function () {
|
|
||||||
var arkiwi = new ARKIWI.Arkiwi('http://www.arkiwi.org');
|
|
||||||
$.get("templates/list.txt", function (template) {
|
|
||||||
|
|
||||||
arkiwi.path("XM24", function (listone) {
|
|
||||||
var dioporco = Mustache.render(template, listone);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
var arkiwi = new ARKIWI.Arkiwi('http://www.arkiwi.org');
|
|
||||||
arkiwi.search('Ampioraggio', function (result) {
|
|
||||||
console.log('Ricerca...');
|
|
||||||
console.log(result);
|
|
||||||
});
|
|
||||||
|
|
||||||
arkiwi.path('XM24', function (result) {
|
|
||||||
console.log('Lettura cartella...');
|
|
||||||
console.log(result);
|
|
||||||
}, true);
|
|
||||||
});
|
|
Loading…
Reference in a new issue