fancybox 0.0.15 → 0.0.16
Sign up to get free protection for your applications and to get access to all the features.
data/fancybox.gemspec
CHANGED
@@ -4,6 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'fancybox/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |gem|
|
7
|
+
gem.license = "MIT"
|
7
8
|
gem.name = "fancybox"
|
8
9
|
gem.version = Fancybox::VERSION
|
9
10
|
gem.authors = ["Andrey"]
|
@@ -16,4 +17,6 @@ Gem::Specification.new do |gem|
|
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
18
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
19
|
gem.require_paths = ["lib"]
|
20
|
+
|
21
|
+
gem.add_dependency "sass-rails", ">= 3.1.7"
|
19
22
|
end
|
data/lib/fancybox/version.rb
CHANGED
@@ -76,7 +76,7 @@
|
|
76
76
|
}
|
77
77
|
|
78
78
|
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
|
79
|
-
background-image: url('
|
79
|
+
background-image: url(asset-path('fancybox/2.1.3/fancybox_sprite.png'));
|
80
80
|
}
|
81
81
|
|
82
82
|
#fancybox-loading {
|
@@ -94,7 +94,7 @@
|
|
94
94
|
#fancybox-loading div {
|
95
95
|
width: 44px;
|
96
96
|
height: 44px;
|
97
|
-
background: url('
|
97
|
+
background: url(asset-path('fancybox/2.1.3/fancybox_loading.gif')) center center no-repeat;
|
98
98
|
}
|
99
99
|
|
100
100
|
.fancybox-close {
|
@@ -114,7 +114,7 @@
|
|
114
114
|
height: 100%;
|
115
115
|
cursor: pointer;
|
116
116
|
text-decoration: none;
|
117
|
-
background: transparent url('
|
117
|
+
background: transparent url(asset-path('fancybox/2.1.3/blank.gif')); /* helps IE */
|
118
118
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
119
119
|
z-index: 8040;
|
120
120
|
}
|
@@ -175,7 +175,7 @@
|
|
175
175
|
overflow: hidden;
|
176
176
|
display: none;
|
177
177
|
z-index: 8010;
|
178
|
-
background: url('
|
178
|
+
background: url(asset-path('fancybox/2.1.3/fancybox_overlay.png'));
|
179
179
|
}
|
180
180
|
|
181
181
|
.fancybox-overlay-fixed {
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fancybox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.16
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,8 +9,24 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
13
|
-
dependencies:
|
12
|
+
date: 2013-07-25 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: sass-rails
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 3.1.7
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 3.1.7
|
14
30
|
description: Fancybox 2 for Rails
|
15
31
|
email:
|
16
32
|
- railscode@gmail.com
|
@@ -39,10 +55,11 @@ files:
|
|
39
55
|
- vendor/assets/javascripts/fancybox/2.1.3/fancybox.js
|
40
56
|
- vendor/assets/javascripts/fancybox/2.1.3/init.js
|
41
57
|
- vendor/assets/stylesheets/fancybox.css
|
42
|
-
- vendor/assets/stylesheets/fancybox/2.1.3/changes.css
|
43
|
-
- vendor/assets/stylesheets/fancybox/2.1.3/fancybox.css
|
58
|
+
- vendor/assets/stylesheets/fancybox/2.1.3/changes.css.scss
|
59
|
+
- vendor/assets/stylesheets/fancybox/2.1.3/fancybox.css.scss
|
44
60
|
homepage: https://github.com/vav/fancybox
|
45
|
-
licenses:
|
61
|
+
licenses:
|
62
|
+
- MIT
|
46
63
|
post_install_message:
|
47
64
|
rdoc_options: []
|
48
65
|
require_paths:
|
@@ -61,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
78
|
version: '0'
|
62
79
|
requirements: []
|
63
80
|
rubyforge_project:
|
64
|
-
rubygems_version: 1.8.
|
81
|
+
rubygems_version: 1.8.19
|
65
82
|
signing_key:
|
66
83
|
specification_version: 3
|
67
84
|
summary: Fancybox 2 for Rails
|