sudojs-rails 0.4.9 → 0.5.0
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 +4 -4
- data/lib/sudojs/version.rb +1 -1
- data/vendor/assets/javascripts/sudojs/sudo.js +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24474e1cbcb49ad39d78902cd4dcab74e09918c8
|
4
|
+
data.tar.gz: 8fda2594bd72ed4a67dbefa2c4b309289e193bd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fd60f42b672b917c2428c04747f6e062bd0f09f4cc558f6014ceb6fbb6b0d310341642fa357538fe8a89449e26f44757897859bb2d169c026c2b50fecf9f538
|
7
|
+
data.tar.gz: 57e2642397352417640f47af5eb729aa215ac0ab34ae117a7b188e90ba8c85a595ec21c496f0c580d73ce4d5fd4d9dfe389ac6e67a4660668b563dbbd5fafdc5
|
data/lib/sudojs/version.rb
CHANGED
@@ -900,7 +900,8 @@ sudo.DataView = function(el, data) {
|
|
900
900
|
// if autorendering, observe your own model
|
901
901
|
// use this ref to unobserve if desired
|
902
902
|
if(this.model.data.autoRender) this.observer = this.model.observe(this.render.bind(this));
|
903
|
-
|
903
|
+
// only call the initial build if not an autoRender type
|
904
|
+
else this.build();
|
904
905
|
if(this.role === 'dataview') this.init();
|
905
906
|
};
|
906
907
|
// `private`
|