This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"a00df46cc939f987273717d6190ba527" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- 1. First: you got to register your app --> | |
<html ng-app="MicroApp"> | |
<head> | |
<!-- 2. First: Load angular --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function IsPrime(int) { | |
for(i=2;i<int;i++) { | |
var rest; | |
var result; | |
rest = int%i; | |
//No Prime | |
console.log(rest); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/app/index.html b/app/index.html | |
index 09c05ae..900e8fc 100644 | |
--- a/app/index.html | |
+++ b/app/index.html | |
@@ -92,16 +92,7 @@ | |
</div> | |
<!-- Begin Analytics--> | |
-<!-- Google Analytics Start --> | |
-<script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From f2b317acc4c635556871f76d40c17d65e5533706 Mon Sep 17 00:00:00 2001 | |
From: Guntram Bechtold <[email protected]> | |
Date: Thu, 18 Sep 2014 22:17:01 +0200 | |
Subject: [PATCH] added google analytics and udc analytics | |
--- | |
app/index.html | 24 ++++++++++++++++++++++++ | |
1 file changed, 24 insertions(+) | |
diff --git a/app/index.html b/app/index.html |
NewerOlder