caboose-cms 0.3.63 → 0.3.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NGM1NjlmZmU1NWZjYTU1MjMzZTllZTBjZTMzMDI1ZTkxNmE3ODE4Yg==
4
+ MDcxNjBiM2E0ODc1YmE3YjhlYzNlNTA4YWMyOGZiZGFjOTg0MzZiNg==
5
5
  data.tar.gz: !binary |-
6
- OGQ5OWUwZGQxZjUxZTNkZWY5ZjRlZTBiNWYxNTlkOTcxM2NmMzQ1Mg==
6
+ MTFhNmRkODc4MWZmODE3OGJiZjc0ZjI4NDliMDI5ZWJkYmRlMWY1OQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NWNmZWJhYTk2NjZkOTgzZGVjNWYxZGI2MWMzMjA5ODRjMzNiNzBiZDdkZWY3
10
- YmJmNmQ4NDM5NzlkMzE3ZDE3OTEyOTMxNzE4MjdkYzkxY2JmMWI1MDlkMTEz
11
- ZWY5NTc5YmZhNmIxMzc1YjYzNzQzZTUyOWQxNWU4ZjQzNGNiNjU=
9
+ YmVkNDcwMGRmOTRjYWNhMTY0OWM4ZjZkNDg4NjY0NTAzNzAxNDY2NWM2NGY4
10
+ NzY4ZjFjZGU5NGI0NjViZjAzMWI0OWJlYjkyYTdiYjlhMWRmYTVmZmRjODQy
11
+ ZjA1YTBkZDNkMTM3NWVlNjRkOTM2ZWFmMWY2YjllMDhlNTNkOTU=
12
12
  data.tar.gz: !binary |-
13
- MzkzYzVmODM4MTNhYzllZDY4OGQyZjhjYWUyYzdhODZkOGExMWFmZjg0MzU5
14
- MmFkZjQwZTg0NDhhZjJiZDBmZTA1MGQwMTNiZTRhZjVhNTY1MGE1OGI1ZTE4
15
- MTZiMThmMTFmOTQxYjA4ODYzYmExYzlmYTI0Zjc0YjYwYTFhZDA=
13
+ NTE4OTNjYWEyODMyNmI4NGUyMGYwOTNiOGNmZjkzMjJkM2E2OWI1YzkwZTQ3
14
+ ZDU0ZGU1OWIwNjQ5ZTFkMmM0YjQzZDk1OTMyZmY1M2NiYmFkZDJkNDZkNGJi
15
+ ZDljMTVjMzdlNWY5ZWM0NDM5YTM5NTdhNTI0M2JkNDVhZGZkZTI=
@@ -85,7 +85,7 @@ BoundRichText = BoundControl.extend({
85
85
  tinymce.activeEditor.remove();
86
86
  this2.show_check(500);
87
87
  $('#'+this2.el).val(this2.attribute.value);
88
- $('#'+this2.el).removeClass('dirty');
88
+ $('#'+this2.el).removeClass('mb_dirty');
89
89
  //var ed = tinymce.EditorManager.get(this2.el);
90
90
  //ed.getBody().style.backgroundColor = "#fff";
91
91
 
@@ -99,7 +99,7 @@ BoundRichText = BoundControl.extend({
99
99
  if (this.attribute.before_cancel) this.attribute.before_cancel();
100
100
  this.attribute.value = this.attribute.value_clean;
101
101
  $('#'+this.el).val(this.attribute.value);
102
- $('#'+this.el).removeClass('dirty');
102
+ $('#'+this.el).removeClass('mb_dirty');
103
103
 
104
104
  if ($('#'+this.el+'_check').length)
105
105
  this.hide_check();
@@ -75,7 +75,7 @@ BoundText = BoundControl.extend({
75
75
  {
76
76
  this2.show_check(500);
77
77
  $('#'+this2.el).val(this2.attribute.value);
78
- $('#'+this2.el).removeClass('dirty');
78
+ $('#'+this2.el).removeClass('mb_dirty');
79
79
 
80
80
  if (this2.binder.success)
81
81
  this2.binder.success(this2);
@@ -87,7 +87,7 @@ BoundText = BoundControl.extend({
87
87
  if (this.attribute.before_cancel) this.attribute.before_cancel();
88
88
  this.attribute.value = this.attribute.value_clean;
89
89
  $('#'+this.el).val(this.attribute.value);
90
- $('#'+this.el).removeClass('dirty');
90
+ $('#'+this.el).removeClass('mb_dirty');
91
91
 
92
92
  if ($('#'+this.el+'_check').length)
93
93
  this.hide_check();
@@ -94,7 +94,7 @@ BoundTextarea = BoundControl.extend({
94
94
  {
95
95
  this2.show_check(500);
96
96
  $('#'+this2.el).val(this2.attribute.value);
97
- $('#'+this2.el).removeClass('dirty');
97
+ $('#'+this2.el).removeClass('mb_dirty');
98
98
 
99
99
  if (this2.binder.success)
100
100
  this2.binder.success(this2);
@@ -115,7 +115,7 @@ BoundTextarea = BoundControl.extend({
115
115
  }
116
116
  this.attribute.value = this.attribute.value_clean;
117
117
  $('#'+this.el).val(this.attribute.value);
118
- $('#'+this.el).removeClass('dirty');
118
+ $('#'+this.el).removeClass('mb_dirty');
119
119
 
120
120
  if ($('#'+this.el+'_check').length)
121
121
  this.hide_check();
@@ -1,3 +1,3 @@
1
1
  module Caboose
2
- VERSION = '0.3.63'
2
+ VERSION = '0.3.64'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: caboose-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.63
4
+ version: 0.3.64
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Barry