kea-rails 1.0.0 → 1.0.1
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,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f332501098df3a23f21560bbf7ebc24934a655fc
|
|
4
|
+
data.tar.gz: c1b94b960b6acb5211ea2317640392b493069735
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58a69283eafb2f4af81411846973c948fd2b3ae77c74c8a4fc091c4cce822285cd2cdcc367eafdcbb943cc2ac5e6fbd95d5a9bc7ad681b831d1fe41127310e4c
|
|
7
|
+
data.tar.gz: 7f2805cb62f564829ff3d2fbb2a29d52ee9e77da39a686211ecb337b863c9d9a06df8174d3e2be881b9cd7ba77c798548188b986d243c628b3836c53a680adfc
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
(function(app, ko) {
|
|
1
|
+
(function(app, kea, ko) {
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var SherlockVm;
|
|
5
5
|
|
|
6
6
|
SherlockVm = function SherlockVm() {
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
kea.viewmodels.Parent.apply(this);
|
|
8
|
+
kea.viewmodels.Child.apply(this);
|
|
9
9
|
|
|
10
10
|
var that = this;
|
|
11
11
|
|
|
@@ -227,4 +227,4 @@
|
|
|
227
227
|
|
|
228
228
|
app.sherlock.SherlockVm = SherlockVm;
|
|
229
229
|
|
|
230
|
-
})(window.app, ko);
|
|
230
|
+
})(window.app, window.kea, ko);
|
|
@@ -104,7 +104,7 @@ $(document).ready(function() {
|
|
|
104
104
|
copy_file "_komplete.sass", namespaced_path("app/assets/stylesheets", "_komplete.sass")
|
|
105
105
|
copy_file "_sherlock.sass", namespaced_path("app/assets/stylesheets", "_sherlock.sass")
|
|
106
106
|
|
|
107
|
-
insert_into_file namespaced_path("app/assets/stylesheets", "application.css.sass"), "*= require kea/kea", :before => "*= require_self"
|
|
107
|
+
insert_into_file namespaced_path("app/assets/stylesheets", "application.css.sass"), "*= require kea/kea\n", :before => "*= require_self"
|
|
108
108
|
|
|
109
109
|
append_to_file namespaced_path("app/assets/stylesheets", "application.css.sass") do <<-'CSS'
|
|
110
110
|
+keyframes(overlay)
|
data/lib/kea-rails/version.rb
CHANGED