promethee 1.0.16 → 1.0.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5414d58a8567e08c180995653ab9e3755298901d
4
- data.tar.gz: 2aa4b0eb73ec172db80d0de22984e08be9b2ad7f
3
+ metadata.gz: 13c5f5e019b1f073f36897310137d1b5a210d24d
4
+ data.tar.gz: d4f491a682e9e022dcb82feac40cdbeaabb0e978
5
5
  SHA512:
6
- metadata.gz: 3717ba625f86d8ceb4483ab60ff744f5f62991d334564bbbcecb279875045623fc2f255fb5b029f98a5c1b3b38c95fa22faf1c15c5d0beadb8ecf3042b13cc98
7
- data.tar.gz: adfb6d19b7a2badb82507b21579c6d3e591b2988e600afc174aa6fe016dfd2e9f00279921c779de3bd0dd914f62e72705fa2c964bcbb7530d92cd198f724567e
6
+ metadata.gz: 4ebff7bbfcf613de2542ee39064f9a21b325edd1bd92c276b508aad3f6bce72837ff97b940c6709423fb80f1b7d73db36f94634b5fd64813b5ee3411ffb14bb4
7
+ data.tar.gz: 5bd449533279cb5a0414ab37d0be371587f0198048067fcc1991bf8fb08a2e8bd14cedc5a55c76531a3379a504ac022c7678bc47d35dc92b84babe47ec30a29e
@@ -41,15 +41,15 @@
41
41
  $scope.editing = false;
42
42
 
43
43
  $scope.edit = function() {
44
- this.editing = true;
44
+ $scope.editing = true;
45
45
  };
46
46
 
47
47
  $scope.complete = function() {
48
- this.editing = false;
48
+ $scope.editing = false;
49
49
  };
50
50
 
51
51
  $scope.toggleEdit = function() {
52
- this.editing = !this.editing;
52
+ $scope.editing = !$scope.editing;
53
53
  };
54
54
  }]);
55
55
  </script>
@@ -4,6 +4,7 @@
4
4
  Image
5
5
  <ng-include src="'promethee/write/toolbar'"></ng-include>
6
6
  </div>
7
+ {{editing}}
7
8
  <div ng-show="editing" class="promethee-editor__wrapper">
8
9
  <div class="form-group">
9
10
  <label class="label-control">Url</label>
@@ -39,15 +40,15 @@
39
40
  $scope.editing = false;
40
41
 
41
42
  $scope.edit = function() {
42
- this.editing = true;
43
+ $scope.editing = true;
43
44
  };
44
45
 
45
46
  $scope.complete = function() {
46
- this.editing = false;
47
+ $scope.editing = false;
47
48
  };
48
49
 
49
50
  $scope.toggleEdit = function() {
50
- this.editing = !this.editing;
51
+ $scope.editing = !$scope.editing;
51
52
  };
52
53
  }]);
53
54
  </script>
@@ -42,15 +42,15 @@
42
42
  $scope.editing = false;
43
43
 
44
44
  $scope.edit = function() {
45
- this.editing = true;
45
+ $scope.editing = true;
46
46
  };
47
47
 
48
48
  $scope.complete = function() {
49
- this.editing = false;
49
+ $scope.editing = false;
50
50
  };
51
51
 
52
52
  $scope.toggleEdit = function() {
53
- this.editing = !this.editing;
53
+ $scope.editing = !$scope.editing;
54
54
  };
55
55
  }]);
56
56
  </script>
@@ -30,15 +30,15 @@
30
30
  $scope.editing = false;
31
31
 
32
32
  $scope.edit = function() {
33
- this.editing = true;
33
+ $scope.editing = true;
34
34
  };
35
35
 
36
36
  $scope.complete = function() {
37
- this.editing = false;
37
+ $scope.editing = false;
38
38
  };
39
39
 
40
40
  $scope.toggleEdit = function() {
41
- this.editing = !this.editing;
41
+ $scope.editing = !$scope.editing;
42
42
  };
43
43
 
44
44
  $scope.options = {
@@ -33,15 +33,15 @@
33
33
  $scope.editing = false;
34
34
 
35
35
  $scope.edit = function() {
36
- this.editing = true;
36
+ $scope.editing = true;
37
37
  };
38
38
 
39
39
  $scope.complete = function() {
40
- this.editing = false;
40
+ $scope.editing = false;
41
41
  };
42
42
 
43
43
  $scope.toggleEdit = function() {
44
- this.editing = !this.editing;
44
+ $scope.editing = !$scope.editing;
45
45
  };
46
46
 
47
47
  Object.defineProperty($scope, 'embed', {
@@ -1,5 +1,5 @@
1
1
  module Promethee
2
2
  module Rails
3
- VERSION = '1.0.16'
3
+ VERSION = '1.0.17'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: promethee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.16
4
+ version: 1.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julien Dargelos