From 6f1f9695deedae9426e3537ef436aac7e0eb8ef5 Mon Sep 17 00:00:00 2001 From: cri Date: Sat, 12 Sep 2015 18:32:58 +0200 Subject: [PATCH] aggiunta ignore all tilde --- .gitignore | 11 +++++++++++ app/scripts/main.js~ | 34 ---------------------------------- 2 files changed, 11 insertions(+), 34 deletions(-) delete mode 100644 app/scripts/main.js~ diff --git a/.gitignore b/.gitignore index 290bd28..470ebfe 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/app/scripts/main.js~ b/app/scripts/main.js~ deleted file mode 100644 index 5ccbee4..0000000 --- a/app/scripts/main.js~ +++ /dev/null @@ -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); -});