Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,8 @@ build/Release
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules

.idea
.idea

#Data files
data/*
.DS_Store
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Tests
- AngularJS v1.4.0
- Angular v2.0.0-alpha.26
- ReactJS 0.13.0
- InfernoJS 0.1.1
- HTML DOM

TODO
Expand Down
6 changes: 5 additions & 1 deletion angular1/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,8 @@
.selected, a.selected:hover , a.selected:active {
background-color: #337ab7;
color: white;
}
}

.btn-group-lg>.btn, .btn-lg {
font-size: 16px;
}
3 changes: 2 additions & 1 deletion angular1/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
v1.4.0</a>
<a class="btn btn-lg btn-link" role="button" href="../angular2/dist/index.html">AngularJS v2.0.0-alpha.26</a>
<a class="btn btn-lg btn-link" role="button" href="../reactjs/index.html">ReactJS 0.13.0</a>
<a class="btn btn-lg btn-link" role="button" href="../infernojs/index.html">InfernoJS 0.1.27</a>
<a class="btn btn-lg btn-link" role="button" href="../raw/index.html">HTML DOM</a>
</p>

Expand All @@ -20,4 +21,4 @@
<div class="well well-sm">
<div><span className="text-muted">ngRepeat time:</span> {{duration}} ms</div>
<div><span className="text-muted">Watchers:</span> {{totalWatchers}}</div>
</div>
</div>
6 changes: 5 additions & 1 deletion angular2/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
background-color: #337ab7;
color: white;
}

.btn-group-lg>.btn, .btn-lg {
font-size: 16px;
}
</style>
</head>
<body>
Expand Down Expand Up @@ -58,4 +62,4 @@
System.import('TestApp').catch(console.log.bind(console));
</script>
</body>
</html>
</html>
1 change: 1 addition & 0 deletions angular2/dist/templates/test-app.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ <h1>AngularJS 2.0.0-alpha.26</h1>
<a class="btn btn-lg btn-link" role="button" href="../../angular1/index3.html">AngularJS v1.4.0</a>
<a class="btn btn-lg btn-link selected" role="button" >AngularJS v2.0.0-alpha.26</a>
<a class="btn btn-lg btn-link" role="button" href="../../reactjs/index.html">ReactJS 0.13.0</a>
<a class="btn btn-lg btn-link" role="button" href="../../infernojs/index.html">InfernoJS 0.1.27</a>
<a class="btn btn-lg btn-link" role="button" href="../../raw/index.html">HTML DOM</a>
</p>

Expand Down
2 changes: 1 addition & 1 deletion angular2/src/TestApp.es6
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ class TestApp {
};
}

bootstrap(TestApp);
bootstrap(TestApp);
7 changes: 6 additions & 1 deletion angular2/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
background-color: #337ab7;
color: white;
}

.btn-group-lg>.btn, .btn-lg {
font-size: 16px;
}

</style>
</head>
<body>
Expand Down Expand Up @@ -58,4 +63,4 @@
System.import('TestApp').catch(console.log.bind(console));
</script>
</body>
</html>
</html>
1 change: 1 addition & 0 deletions angular2/src/templates/test-app.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ <h1>AngularJS 2.0.0-alpha.26</h1>
<a class="btn btn-lg btn-link" role="button" href="../../angular1/index3.html">AngularJS v1.4.0</a>
<a class="btn btn-lg btn-link selected" role="button" >AngularJS v2.0.0-alpha.26</a>
<a class="btn btn-lg btn-link" role="button" href="../../reactjs/index.html">ReactJS 0.13.0</a>
<a class="btn btn-lg btn-link" role="button" href="../../infernojs/index.html">InfernoJS 0.1.27</a>
<a class="btn btn-lg btn-link" role="button" href="../../raw/index.html">HTML DOM</a>
</p>

Expand Down
Loading