loadcss-rails 0.2.2 → 0.2.4
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/loadcss/rails/version.rb +2 -2
- data/vendor/assets/javascripts/loadCSS.js +6 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9267c6e14ba60dedcc31f76e87f33cbc96188ee
|
4
|
+
data.tar.gz: b5e19f7a58524ade10ad8b501436a7665f71d775
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81055828a459ea08d8cd5e1f062c18ce92c8a021bb8360417593343d2d50cfee3d730602f2341ee881b9a9bb5698746325c1e6c0e1cef123417d69aa2413195c
|
7
|
+
data.tar.gz: ac2f173ab064173ce21989328d7e9a23903ef4d720680b9cf22e6c8d3e5ae32b508a050fbf86ab57acad46a17f0de0820e054d49bc1b3b62000aa930c1a64d09
|
@@ -6,7 +6,7 @@ Licensed MIT
|
|
6
6
|
(function(w){
|
7
7
|
"use strict";
|
8
8
|
/* exported loadCSS */
|
9
|
-
|
9
|
+
var loadCSS = function( href, before, media ){
|
10
10
|
// Arguments explained:
|
11
11
|
// `href` [REQUIRED] is the URL for your CSS file.
|
12
12
|
// `before` [OPTIONAL] is the element the script should use as a reference for injecting our stylesheet <link> before
|
@@ -56,6 +56,9 @@ Licensed MIT
|
|
56
56
|
};
|
57
57
|
// commonjs
|
58
58
|
if( typeof module !== "undefined" ){
|
59
|
-
module.exports =
|
59
|
+
module.exports = loadCSS;
|
60
60
|
}
|
61
|
-
|
61
|
+
else {
|
62
|
+
w.loadCSS = loadCSS;
|
63
|
+
}
|
64
|
+
}( typeof global !== "undefined" ? global : this ));
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: loadcss-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Misshore
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: This gem provides LoadCSS and OnloadCSS for your Rails application.
|
14
14
|
email:
|