jombo 0.0.1.beta9 → 0.0.1.beta10
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/README.md
CHANGED
@@ -30,7 +30,7 @@ So there you have it ... and you didn't even want to know!
|
|
30
30
|
|
31
31
|
In a Rails 3.1.x project add the gem to your assets group in your `Gemfile`. It is currently in beta:
|
32
32
|
|
33
|
-
gem "jombo", "~> 0.0.1.
|
33
|
+
gem "jombo", "~> 0.0.1.beta9"
|
34
34
|
|
35
35
|
Bundle the gem using bundler:
|
36
36
|
|
data/lib/jombo/version.rb
CHANGED
@@ -0,0 +1,45 @@
|
|
1
|
+
/* ===================================================
|
2
|
+
* bootstrap-transitions.js v2.0.0
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html
|
4
|
+
* ===================================================
|
5
|
+
* Copyright 2011 Twitter, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
* ========================================================== */
|
19
|
+
|
20
|
+
$(function () {
|
21
|
+
|
22
|
+
/* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
|
23
|
+
* ======================================================= */
|
24
|
+
|
25
|
+
$.support.transition = (function () {
|
26
|
+
var thisBody = document.body || document.documentElement
|
27
|
+
, thisStyle = thisBody.style
|
28
|
+
, support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined
|
29
|
+
|
30
|
+
return support && {
|
31
|
+
end: (function () {
|
32
|
+
var transitionEnd = "TransitionEnd"
|
33
|
+
if ( $.browser.webkit ) {
|
34
|
+
transitionEnd = "webkitTransitionEnd"
|
35
|
+
} else if ( $.browser.mozilla ) {
|
36
|
+
transitionEnd = "transitionend"
|
37
|
+
} else if ( $.browser.opera ) {
|
38
|
+
transitionEnd = "oTransitionEnd"
|
39
|
+
}
|
40
|
+
return transitionEnd
|
41
|
+
}())
|
42
|
+
}
|
43
|
+
})()
|
44
|
+
|
45
|
+
})
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jombo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1.
|
4
|
+
version: 0.0.1.beta10
|
5
5
|
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-12-
|
12
|
+
date: 2011-12-17 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Package Bootstrap from Twitter (2.0 work-in-progress branch) assets as
|
15
15
|
a gem.
|
@@ -38,6 +38,7 @@ files:
|
|
38
38
|
- vendor/assets/javascripts/bootstrap/bootstrap-scrollspy.js
|
39
39
|
- vendor/assets/javascripts/bootstrap/bootstrap-tab.js
|
40
40
|
- vendor/assets/javascripts/bootstrap/bootstrap-transition.js
|
41
|
+
- vendor/assets/javascripts/bootstrap/bootstrap-transitions.js
|
41
42
|
- vendor/assets/javascripts/bootstrap/bootstrap-twipsy.js
|
42
43
|
- vendor/assets/javascripts/bootstrap/index.js
|
43
44
|
- vendor/assets/stylesheets/bootstrap/bootstrap.css
|