|
@@ -17,12 +17,6 @@ angular.module('SolvIn')
|
|
|
return [0, 0, 0, 90, -90][Math.round(4 * Math.random())];
|
|
|
};
|
|
|
|
|
|
- $scope.events = {
|
|
|
- click: function (tag) {
|
|
|
- $mdToast.showSimple('КЛИК')
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
let update = $scope.update = function () {
|
|
|
$scope.words = [];
|
|
|
const maxWords = 200;
|
|
@@ -36,6 +30,12 @@ angular.module('SolvIn')
|
|
|
})
|
|
|
}
|
|
|
};
|
|
|
+
|
|
|
+ $scope.events = {
|
|
|
+ click: function (tag) {
|
|
|
+ $mdToast.showSimple('КЛИК')
|
|
|
+ }
|
|
|
+ };
|
|
|
|
|
|
$scope.showStep = function (idx){
|
|
|
if(_.isNumber(idx)) {
|