Browse Source

aggiunta ignore all tilde

cri 8 years ago
parent
commit
6f1f9695de
2 changed files with 11 additions and 34 deletions
  1. 11 0
      .gitignore
  2. 0 34
      app/scripts/main.js~

+ 11 - 0
.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

+ 0 - 34
app/scripts/main.js~

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