aggiunta ignore all tilde

This commit is contained in:
cri 2015-09-12 18:32:58 +02:00
parent 7693a3d3eb
commit 6f1f9695de
2 changed files with 11 additions and 34 deletions

11
.gitignore vendored
View file

@ -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
bower_components
node_modules

View file

@ -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);
});