popcornjs-rails 1.1.2 → 1.2.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.
- data/.gitignore +0 -0
- data/Gemfile +0 -0
- data/README.md +10 -4
- data/Rakefile +0 -0
- data/lib/popcornjs-rails/version.rb +1 -1
- data/lib/popcornjs-rails.rb +0 -0
- data/popcornjs-rails.gemspec +0 -0
- data/vendor/assets/javascripts/popcorn-complete.js +1512 -910
- data/vendor/assets/javascripts/popcorn-complete.min.js +188 -178
- data/vendor/assets/javascripts/popcorn-ie8.js +2849 -0
- data/vendor/assets/javascripts/popcorn-ie8.min.js +64 -0
- data/vendor/assets/javascripts/popcorn.js +207 -511
- data/vendor/assets/javascripts/popcorn.min.js +37 -42
- metadata +5 -3
data/.gitignore
CHANGED
|
File without changes
|
data/Gemfile
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
@@ -9,17 +9,23 @@ Rails 3.1 asset-pipeline gem to provide popcorn.js support
|
|
|
9
9
|
|
|
10
10
|
In your application.js manifest:
|
|
11
11
|
|
|
12
|
-
##
|
|
12
|
+
## Core version:
|
|
13
13
|
//= popcorn
|
|
14
14
|
|
|
15
|
-
##
|
|
15
|
+
## Core version (minified)
|
|
16
16
|
//= popcorn.min
|
|
17
17
|
|
|
18
|
-
## Full with all plugins
|
|
18
|
+
## Full version with all plugins
|
|
19
19
|
//= popcorn-complete
|
|
20
20
|
|
|
21
|
-
## Full with all plugins
|
|
21
|
+
## Full version with all plugins (minified)
|
|
22
22
|
//= popcorn-complete.min
|
|
23
23
|
|
|
24
|
+
## Beta: The Popcorn.js core library, plus IE8 shim, flash player support, and the YouTube player
|
|
25
|
+
//= popcorn-ie8
|
|
26
|
+
|
|
27
|
+
## Beta: The Popcorn.js core library, plus IE8 shim, flash player support, and the YouTube player (minified)
|
|
28
|
+
//= popcorn-ie8.min
|
|
29
|
+
|
|
24
30
|
or directly available under `/assets/popcorn.js`
|
|
25
31
|
|
data/Rakefile
CHANGED
|
File without changes
|
data/lib/popcornjs-rails.rb
CHANGED
|
File without changes
|
data/popcornjs-rails.gemspec
CHANGED
|
File without changes
|