Some refactoring, added Swagger documentation

This commit is contained in:
2015-11-20 21:43:14 +01:00
parent d322d09604
commit 7adf048438
13 changed files with 122 additions and 333 deletions

View File

@ -16,9 +16,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
var app = document.querySelector('#app');
app.join = function() {
var index = 0;
var result = '';
for (index = 0; index < arguments.length; index++) {
for (var index = 0; index < arguments.length; index++) {
result += arguments[index];
}
return result;