mediaelement_rails 0.8.1 → 0.8.2
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/CHANGELOG.md +4 -0
- data/app/assets/javascripts/mediaelement_rails/mediaelement.js +175 -72
- data/app/assets/javascripts/mediaelement_rails/mediaelementplayer.js +288 -131
- data/app/assets/plugins/mediaelement_rails/flashmediaelement-cdn.swf +0 -0
- data/app/assets/plugins/mediaelement_rails/flashmediaelement.swf +0 -0
- data/app/assets/stylesheets/mediaelement_rails/mediaelementplayer.css.erb +22 -2
- data/lib/mediaelement_rails/version.rb +1 -1
- metadata +3 -3
Binary file
|
Binary file
|
@@ -17,6 +17,10 @@
|
|
17
17
|
text-indent: 0;
|
18
18
|
}
|
19
19
|
|
20
|
+
.mejs-container:focus {
|
21
|
+
outline: none;
|
22
|
+
}
|
23
|
+
|
20
24
|
.me-plugin {
|
21
25
|
position: absolute;
|
22
26
|
}
|
@@ -898,7 +902,7 @@ div.mejs-speed-button {
|
|
898
902
|
}
|
899
903
|
|
900
904
|
.mejs-controls .mejs-speed-button .mejs-speed-selector {
|
901
|
-
|
905
|
+
display: none;
|
902
906
|
position: absolute;
|
903
907
|
top: -100px;
|
904
908
|
left: -10px;
|
@@ -914,8 +918,9 @@ div.mejs-speed-button {
|
|
914
918
|
border-radius: 0;
|
915
919
|
}
|
916
920
|
|
921
|
+
|
917
922
|
.mejs-controls .mejs-speed-button:hover > .mejs-speed-selector {
|
918
|
-
|
923
|
+
display: block;
|
919
924
|
}
|
920
925
|
|
921
926
|
.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label.mejs-speed-selected {
|
@@ -964,6 +969,21 @@ div.mejs-speed-button {
|
|
964
969
|
}
|
965
970
|
/* End: Speed */
|
966
971
|
|
972
|
+
/* Start: Jump Forward */
|
973
|
+
|
974
|
+
.mejs-controls .mejs-button.mejs-jump-forward-button {
|
975
|
+
background: transparent url(<%= asset_path "mediaelement_rails/jumpforward.png" %>) no-repeat;
|
976
|
+
background-position: 3px 3px;
|
977
|
+
}
|
978
|
+
.mejs-controls .mejs-button.mejs-jump-forward-button button {
|
979
|
+
background: transparent;
|
980
|
+
font-size: 9px;
|
981
|
+
line-height: normal;
|
982
|
+
color: #ffffff;
|
983
|
+
}
|
984
|
+
|
985
|
+
/* End: Jump Forward */
|
986
|
+
|
967
987
|
/* Start: Skip Back */
|
968
988
|
|
969
989
|
.mejs-controls .mejs-button.mejs-skip-back-button {
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mediaelement_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Oleson
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2015-
|
13
|
+
date: 2015-08-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: railties
|
@@ -224,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
224
224
|
version: '0'
|
225
225
|
requirements: []
|
226
226
|
rubyforge_project:
|
227
|
-
rubygems_version: 2.4.
|
227
|
+
rubygems_version: 2.4.8
|
228
228
|
signing_key:
|
229
229
|
specification_version: 4
|
230
230
|
summary: MediaElement.js for Rails
|