Skip to content

Commit 33c128a

Browse files
committed
Halto removing the escape characters.
1 parent 8ce2baa commit 33c128a

4 files changed

Lines changed: 395 additions & 5 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
node_modules
33
config.js
44
test.js
5+
./dist

npm-debug.log

Lines changed: 388 additions & 0 deletions
Large diffs are not rendered by default.

src/assets/scss/styles.scss

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
body {
2-
background-color: green;
3-
}
1+

src/components/training/trainingCtrl.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
angular.module('app').controller('trainingCtrl', function($scope, $state, mainService) {
44

55
$scope.sendSolution = function(input) {
6-
mainService.getTest(input).then((response) => console.log(response));
6+
// mainService.getTest(input).then((response) => console.log(response));
7+
input = JSON.stringify(input);
8+
// input = input.replace("\n", " ");
9+
console.log(input);
710
}
811

9-
12+
1013

1114
});

0 commit comments

Comments
 (0)