bootstrapped-rails 2.0.7.2 → 2.0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- data/app/helpers/twitter_breadcrumbs_helper.rb +5 -0
- data/app/views/twitter_bootstrap/_breadcrumbs.html.erb +14 -0
- data/bootstrapped-rails.gemspec +2 -2
- data/lib/bootstrapped-rails/breadcrumbs.rb +21 -0
- data/lib/bootstrapped-rails/engine.rb +8 -0
- data/lib/bootstrapped-rails/version.rb +1 -1
- data/logical_license +23 -0
- data/readme.md +58 -25
- data/vendor/assets/javascripts/bootstrapped/bootstrap-alert.js +1 -1
- data/vendor/assets/javascripts/bootstrapped/bootstrap-button.js +4 -2
- data/vendor/assets/javascripts/bootstrapped/bootstrap-carousel.js +7 -3
- data/vendor/assets/javascripts/bootstrapped/bootstrap-collapse.js +4 -2
- data/vendor/assets/javascripts/bootstrapped/bootstrap-dropdown.js +1 -1
- data/vendor/assets/javascripts/bootstrapped/bootstrap-modal.js +1 -1
- data/vendor/assets/javascripts/bootstrapped/bootstrap-popover.js +1 -1
- data/vendor/assets/javascripts/bootstrapped/bootstrap-scrollspy.js +1 -1
- data/vendor/assets/javascripts/bootstrapped/bootstrap-tab.js +1 -1
- data/vendor/assets/javascripts/bootstrapped/bootstrap-tooltip.js +2 -2
- data/vendor/assets/javascripts/bootstrapped/bootstrap-transition.js +1 -1
- data/vendor/assets/javascripts/bootstrapped/bootstrap-typeahead.js +7 -7
- data/vendor/assets/stylesheets/bootstrapped-sass/_reset.scss +31 -10
- data/vendor/assets/stylesheets/custom_partials/animation.scss +170 -0
- data/vendor/assets/stylesheets/custom_partials/box-shadow.scss +13 -0
- data/vendor/assets/stylesheets/custom_partials/box-sizing.scss +6 -0
- data/vendor/assets/stylesheets/custom_partials/flex-box.scss +64 -0
- data/vendor/assets/stylesheets/custom_partials/license +24 -0
- data/vendor/toolkit/twitter/bootstrap/accordion.less +28 -0
- data/vendor/toolkit/twitter/bootstrap/alerts.less +70 -0
- data/vendor/toolkit/twitter/bootstrap/bootstrap.less +62 -0
- data/vendor/toolkit/twitter/bootstrap/breadcrumbs.less +22 -0
- data/vendor/toolkit/twitter/bootstrap/button-groups.less +148 -0
- data/vendor/toolkit/twitter/bootstrap/buttons.less +183 -0
- data/vendor/toolkit/twitter/bootstrap/carousel.less +121 -0
- data/vendor/toolkit/twitter/bootstrap/close.less +18 -0
- data/vendor/toolkit/twitter/bootstrap/code.less +57 -0
- data/vendor/toolkit/twitter/bootstrap/component-animations.less +18 -0
- data/vendor/toolkit/twitter/bootstrap/dropdowns.less +130 -0
- data/vendor/toolkit/twitter/bootstrap/forms.less +522 -0
- data/vendor/toolkit/twitter/bootstrap/grid.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/hero-unit.less +20 -0
- data/vendor/toolkit/twitter/bootstrap/labels.less +32 -0
- data/vendor/toolkit/twitter/bootstrap/layouts.less +17 -0
- data/vendor/toolkit/twitter/bootstrap/mixins.less +590 -0
- data/vendor/toolkit/twitter/bootstrap/modals.less +83 -0
- data/vendor/toolkit/twitter/bootstrap/navbar.less +299 -0
- data/vendor/toolkit/twitter/bootstrap/navs.less +353 -0
- data/vendor/toolkit/twitter/bootstrap/pager.less +30 -0
- data/vendor/toolkit/twitter/bootstrap/pagination.less +55 -0
- data/vendor/toolkit/twitter/bootstrap/popovers.less +49 -0
- data/vendor/toolkit/twitter/bootstrap/progress-bars.less +95 -0
- data/vendor/toolkit/twitter/bootstrap/reset.less +126 -0
- data/vendor/toolkit/twitter/bootstrap/responsive.less +327 -0
- data/vendor/toolkit/twitter/bootstrap/scaffolding.less +29 -0
- data/vendor/toolkit/twitter/bootstrap/sprites.less +158 -0
- data/vendor/toolkit/twitter/bootstrap/tables.less +150 -0
- data/vendor/toolkit/twitter/bootstrap/thumbnails.less +35 -0
- data/vendor/toolkit/twitter/bootstrap/tooltip.less +35 -0
- data/vendor/toolkit/twitter/bootstrap/type.less +218 -0
- data/vendor/toolkit/twitter/bootstrap/utilities.less +23 -0
- data/vendor/toolkit/twitter/bootstrap/variables.less +107 -0
- data/vendor/toolkit/twitter/bootstrap/wells.less +17 -0
- data/vendor/toolkit/twitter/bootstrap_base.less +2 -0
- metadata +64 -10
@@ -0,0 +1,14 @@
|
|
1
|
+
<ul class="breadcrumb">
|
2
|
+
<% separator = divider %>
|
3
|
+
<% if @breadcrumbs %>
|
4
|
+
<% @breadcrumbs[0..-2].each do |crumb| %>
|
5
|
+
<li>
|
6
|
+
<a href="<%= crumb[:url] %>"><%= crumb[:name] %></a>
|
7
|
+
<span class="divider"><%= separator %></span>
|
8
|
+
</li>
|
9
|
+
<% end %>
|
10
|
+
<li class="active">
|
11
|
+
<a href="<%= @breadcrumbs.last[:url] %>"><%= @breadcrumbs.last[:name] %></a>
|
12
|
+
</li>
|
13
|
+
<% end %>
|
14
|
+
</ul>
|
data/bootstrapped-rails.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.authors = ["Han"]
|
9
9
|
s.email = ["han@logicalprep.com"]
|
10
10
|
s.homepage = ""
|
11
|
-
s.summary = %q{
|
12
|
-
s.description = %q{
|
11
|
+
s.summary = %q{ A mashed together version of bootstrap-sass and twitter-bootstrap-rails, with generators. Also now has breadcrumb support, and some bourbon like scss helpers. }
|
12
|
+
s.description = %q{ This is a hacked-together version of the gem 'bootstrap-sass', with the generators from 'twitter-bootstrap-rails', has also replaced the Glyphicons icons with [Font Awesome](http://fortawesome.github.com/Font-Awesome/), since svg icons are resizable and colorable and such. There are also some custom scss helpers in a folder called 'custom_partials', which are just a byproduct of trying not to hate css. The nature of those scss helpers are very similar in look and feel to the bourbon gem by thoughtbot, which seems more complete than my own (to be honest) but when I had started accumulating helpers, I was not aware of the gem. Feel free to muck around with this as you please. }
|
13
13
|
|
14
14
|
s.rubyforge_project = "bootstrapped-rails"
|
15
15
|
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'active_support'
|
2
|
+
module Bootstrapped
|
3
|
+
module BreadCrumbs
|
4
|
+
extend ActiveSupport::Concern
|
5
|
+
module ClassMethods
|
6
|
+
def add_breadcrumb name, url, options={}
|
7
|
+
before_filter options do |controller|
|
8
|
+
controller.send :add_breadcrumb, name, url
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
protected
|
14
|
+
|
15
|
+
def add_breadcrumb name, url = ''
|
16
|
+
@breadcrumbs ||= []
|
17
|
+
url = eval(url) if url =~ /_path|_url|@/
|
18
|
+
@breadcrumbs << {name: name, url: url}
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -1,6 +1,14 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/breadcrumbs.rb'
|
2
|
+
|
1
3
|
module Bootstrapped
|
2
4
|
module Rails
|
3
5
|
class Engine < ::Rails::Engine
|
6
|
+
|
7
|
+
initializer 'bootstrapped-rails.setup_helpers' do |app|
|
8
|
+
app.config.to_prepare do
|
9
|
+
ActionController::Base.send(:include, BreadCrumbs)
|
10
|
+
end
|
11
|
+
end
|
4
12
|
end
|
5
13
|
end
|
6
14
|
end
|
data/logical_license
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
LICENSE
|
2
|
+
|
3
|
+
The MIT License
|
4
|
+
|
5
|
+
Copyright (c) 2012 Logical Preparation, LLC.
|
6
|
+
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
9
|
+
in the Software without restriction, including without limitation the rights
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
12
|
+
furnished to do so, subject to the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be included in
|
15
|
+
all copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
23
|
+
THE SOFTWARE.
|
data/readme.md
CHANGED
@@ -1,30 +1,9 @@
|
|
1
|
-
|
1
|
+
## Description:
|
2
2
|
|
3
|
-
|
4
|
-
I have no idea why the font above looks so big..
|
5
|
-
---------
|
3
|
+
This is a hacked-together version of the gem 'bootstrap-sass', with the generators from 'twitter-bootstrap-rails', has also replaced the Glyphicons icons with [Font Awesome](http://fortawesome.github.com/Font-Awesome/), since svg icons are resizable and colorable and such. There are also some custom scss helpers in a folder called 'custom_partials', which are just a byproduct of trying not to hate css. The nature of those scss helpers are very similar in look and feel to the bourbon gem by thoughtbot, and in fact, I've added some of bourbon's scss files to complement my own. Admittedly, their scss files do seem more complete than my own (to be honest) but when I had started accumulating helpers, I was not aware of the gem. Feel free to muck around with this as you please.
|
6
4
|
|
7
|
-
|
8
|
-
Feel free to fork and mess around with this.
|
9
|
-
(uses bootstrap v2)
|
10
|
-
|
11
|
-
|
12
|
-
## License
|
13
|
-
Copyright (c) 2011 Seyhun Akyürek
|
14
|
-
|
15
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
16
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
17
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
18
|
-
|
19
|
-
## Font Awesome Attribution
|
20
|
-
Contact
|
5
|
+
Additionally, a pull request by [li](https://github.com/ji) for adding breadcrumb support (for some reason which hasn't been pulled into the twitter-bootstrap-rails gem) has been modified and added here.
|
21
6
|
|
22
|
-
Email: dave@davegandy.com
|
23
|
-
Twitter: http://twitter.com/fortaweso_me
|
24
|
-
Work: http://lemonwi.se co-founder
|
25
|
-
License
|
26
|
-
|
27
|
-
The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0: http://creativecommons.org/licenses/by/3.0/ A mention of 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable source code is considered acceptable attribution.
|
28
7
|
|
29
8
|
## Installing Gem
|
30
9
|
|
@@ -81,6 +60,16 @@ Example:
|
|
81
60
|
rails g scaffold post title:string description:text
|
82
61
|
rake db:migrate
|
83
62
|
rails g bootstrapped:themed posts
|
63
|
+
## Breadcrumbs (shamelessly ripped off of github)
|
64
|
+
as quoted by [li](https://github.com/ji)
|
65
|
+
|
66
|
+
> Usage.
|
67
|
+
> Add this to Your application_layout.html.erb:
|
68
|
+
> <%= render_breadcrumbs %>
|
69
|
+
> <%= yield %>
|
70
|
+
> Add this to Your controller (i.e. ProductsController):
|
71
|
+
> add_breadcrumb "New Product", "/products/new", only: [:new, :create]
|
72
|
+
> That's it.
|
84
73
|
|
85
74
|
## Custom Modules
|
86
75
|
Can be imported with the following import commands at the top of your scss file.
|
@@ -107,4 +96,48 @@ Can be imported with the following import commands at the top of your scss file.
|
|
107
96
|
@import 'custom_partials/arrow.scss';
|
108
97
|
@import "custom_partials/buttons.scss";
|
109
98
|
@import "custom_partials/misc.scss";
|
110
|
-
@import "custom_partials/test_colors.scss";
|
99
|
+
@import "custom_partials/test_colors.scss";
|
100
|
+
As specified above, licenses/attributions are included below.
|
101
|
+
Feel free to fork and mess around with this.
|
102
|
+
(uses bootstrap v2)
|
103
|
+
|
104
|
+
## Credits/Licenses/Attributions
|
105
|
+
|
106
|
+
## License
|
107
|
+
Copyright (c) 2011 Seyhun Akyürek
|
108
|
+
|
109
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
110
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
111
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
112
|
+
|
113
|
+
## Font Awesome Attribution
|
114
|
+
Contact
|
115
|
+
|
116
|
+
Email: dave@davegandy.com
|
117
|
+
Twitter: http://twitter.com/fortaweso_me
|
118
|
+
Work: http://lemonwi.se co-founder
|
119
|
+
License
|
120
|
+
|
121
|
+
The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0: http://creativecommons.org/licenses/by/3.0/ A mention of 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable source code is considered acceptable attribution.
|
122
|
+
|
123
|
+
Credits
|
124
|
+
-------
|
125
|
+
|
126
|
+
![thoughtbot](http://thoughtbot.com/images/tm/logo.png)
|
127
|
+
|
128
|
+
Bourbon is maintained and funded by [thoughtbot, inc](http://thoughtbot.com/community)
|
129
|
+
|
130
|
+
The names and logos for thoughtbot are trademarks of thoughtbot, inc.
|
131
|
+
|
132
|
+
License
|
133
|
+
-------
|
134
|
+
|
135
|
+
Bourbon is Copyright © 2011 thoughtbot. It is free software, and may be redistributed under the terms specified in the LICENSE file.
|
136
|
+
|
137
|
+
## And finally
|
138
|
+
|
139
|
+
Copyright (c) 2012, Logical Preparation, LLC
|
140
|
+
|
141
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
142
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
143
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ==========================================================
|
2
|
-
* bootstrap-alert.js v2.0.
|
2
|
+
* bootstrap-alert.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#alerts
|
4
4
|
* ==========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ============================================================
|
2
|
-
* bootstrap-button.js v2.0.
|
2
|
+
* bootstrap-button.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#buttons
|
4
4
|
* ============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -91,7 +91,9 @@
|
|
91
91
|
|
92
92
|
$(function () {
|
93
93
|
$('body').on('click.button.data-api', '[data-toggle^=button]', function ( e ) {
|
94
|
-
$(e.
|
94
|
+
var $btn = $(e.target)
|
95
|
+
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
|
96
|
+
$btn.button('toggle')
|
95
97
|
})
|
96
98
|
})
|
97
99
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ==========================================================
|
2
|
-
* bootstrap-carousel.js v2.0.
|
2
|
+
* bootstrap-carousel.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#carousel
|
4
4
|
* ==========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -29,6 +29,9 @@
|
|
29
29
|
this.$element = $(element)
|
30
30
|
this.options = $.extend({}, $.fn.carousel.defaults, options)
|
31
31
|
this.options.slide && this.slide(this.options.slide)
|
32
|
+
this.options.pause == 'hover' && this.$element
|
33
|
+
.on('mouseenter', $.proxy(this.pause, this))
|
34
|
+
.on('mouseleave', $.proxy(this.cycle, this))
|
32
35
|
}
|
33
36
|
|
34
37
|
Carousel.prototype = {
|
@@ -83,14 +86,14 @@
|
|
83
86
|
, fallback = type == 'next' ? 'first' : 'last'
|
84
87
|
, that = this
|
85
88
|
|
86
|
-
if (!$next.length) return
|
87
|
-
|
88
89
|
this.sliding = true
|
89
90
|
|
90
91
|
isCycling && this.pause()
|
91
92
|
|
92
93
|
$next = $next.length ? $next : this.$element.find('.item')[fallback]()
|
93
94
|
|
95
|
+
if ($next.hasClass('active')) return
|
96
|
+
|
94
97
|
if (!$.support.transition && this.$element.hasClass('slide')) {
|
95
98
|
this.$element.trigger('slide')
|
96
99
|
$active.removeClass('active')
|
@@ -136,6 +139,7 @@
|
|
136
139
|
|
137
140
|
$.fn.carousel.defaults = {
|
138
141
|
interval: 5000
|
142
|
+
, pause: 'hover'
|
139
143
|
}
|
140
144
|
|
141
145
|
$.fn.carousel.Constructor = Carousel
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* =============================================================
|
2
|
-
* bootstrap-collapse.js v2.0.
|
2
|
+
* bootstrap-collapse.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#collapse
|
4
4
|
* =============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -74,7 +74,9 @@
|
|
74
74
|
[dimension](size || 'auto')
|
75
75
|
[0].offsetWidth
|
76
76
|
|
77
|
-
this.$element
|
77
|
+
this.$element[size ? 'addClass' : 'removeClass']('collapse')
|
78
|
+
|
79
|
+
return this
|
78
80
|
}
|
79
81
|
|
80
82
|
, transition: function ( method, startEvent, completeEvent ) {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ============================================================
|
2
|
-
* bootstrap-dropdown.js v2.0.
|
2
|
+
* bootstrap-dropdown.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#dropdowns
|
4
4
|
* ============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* =========================================================
|
2
|
-
* bootstrap-modal.js v2.0.
|
2
|
+
* bootstrap-modal.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#modals
|
4
4
|
* =========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ===========================================================
|
2
|
-
* bootstrap-popover.js v2.0.
|
2
|
+
* bootstrap-popover.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#popovers
|
4
4
|
* ===========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* =============================================================
|
2
|
-
* bootstrap-scrollspy.js v2.0.
|
2
|
+
* bootstrap-scrollspy.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#scrollspy
|
4
4
|
* =============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ========================================================
|
2
|
-
* bootstrap-tab.js v2.0.
|
2
|
+
* bootstrap-tab.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#tabs
|
4
4
|
* ========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ===========================================================
|
2
|
-
* bootstrap-tooltip.js v2.0.
|
2
|
+
* bootstrap-tooltip.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#tooltips
|
4
4
|
* Inspired by the original jQuery.tipsy by Jason Frame
|
5
5
|
* ===========================================================
|
@@ -206,7 +206,7 @@
|
|
206
206
|
title = $e.attr('data-original-title')
|
207
207
|
|| (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
|
208
208
|
|
209
|
-
title = title.toString().replace(/(^\s*|\s*$)/, "")
|
209
|
+
title = (title || '').toString().replace(/(^\s*|\s*$)/, "")
|
210
210
|
|
211
211
|
return title
|
212
212
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ===================================================
|
2
|
-
* bootstrap-transition.js v2.0.
|
2
|
+
* bootstrap-transition.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#transitions
|
4
4
|
* ===================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* =============================================================
|
2
|
-
* bootstrap-typeahead.js v2.0.
|
2
|
+
* bootstrap-typeahead.js v2.0.2
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#typeahead
|
4
4
|
* =============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -40,6 +40,7 @@
|
|
40
40
|
, select: function () {
|
41
41
|
var val = this.$menu.find('.active').attr('data-value')
|
42
42
|
this.$element.val(val)
|
43
|
+
this.$element.change();
|
43
44
|
return this.hide()
|
44
45
|
}
|
45
46
|
|
@@ -165,9 +166,6 @@
|
|
165
166
|
}
|
166
167
|
|
167
168
|
, keyup: function (e) {
|
168
|
-
e.stopPropagation()
|
169
|
-
e.preventDefault()
|
170
|
-
|
171
169
|
switch(e.keyCode) {
|
172
170
|
case 40: // down arrow
|
173
171
|
case 38: // up arrow
|
@@ -180,6 +178,7 @@
|
|
180
178
|
break
|
181
179
|
|
182
180
|
case 27: // escape
|
181
|
+
if (!this.shown) return
|
183
182
|
this.hide()
|
184
183
|
break
|
185
184
|
|
@@ -187,10 +186,11 @@
|
|
187
186
|
this.lookup()
|
188
187
|
}
|
189
188
|
|
189
|
+
e.stopPropagation()
|
190
|
+
e.preventDefault()
|
190
191
|
}
|
191
192
|
|
192
193
|
, keypress: function (e) {
|
193
|
-
e.stopPropagation()
|
194
194
|
if (!this.shown) return
|
195
195
|
|
196
196
|
switch(e.keyCode) {
|
@@ -210,12 +210,12 @@
|
|
210
210
|
this.next()
|
211
211
|
break
|
212
212
|
}
|
213
|
+
|
214
|
+
e.stopPropagation()
|
213
215
|
}
|
214
216
|
|
215
217
|
, blur: function (e) {
|
216
218
|
var that = this
|
217
|
-
e.stopPropagation()
|
218
|
-
e.preventDefault()
|
219
219
|
setTimeout(function () { that.hide() }, 150)
|
220
220
|
}
|
221
221
|
|
@@ -1,18 +1,29 @@
|
|
1
|
-
// Reset.
|
1
|
+
// Reset.less
|
2
2
|
// Adapted from Normalize.css http://github.com/necolas/normalize.css
|
3
3
|
// ------------------------------------------------------------------------
|
4
4
|
|
5
5
|
// Display in IE6-9 and FF3
|
6
6
|
// -------------------------
|
7
7
|
|
8
|
-
article,
|
8
|
+
article,
|
9
|
+
aside,
|
10
|
+
details,
|
11
|
+
figcaption,
|
12
|
+
figure,
|
13
|
+
footer,
|
14
|
+
header,
|
15
|
+
hgroup,
|
16
|
+
nav,
|
17
|
+
section {
|
9
18
|
display: block;
|
10
19
|
}
|
11
20
|
|
12
21
|
// Display block in IE6-9 and FF3
|
13
22
|
// -------------------------
|
14
23
|
|
15
|
-
audio,
|
24
|
+
audio,
|
25
|
+
canvas,
|
26
|
+
video {
|
16
27
|
display: inline-block;
|
17
28
|
*display: inline;
|
18
29
|
*zoom: 1;
|
@@ -38,14 +49,16 @@ a:focus {
|
|
38
49
|
@include tab-focus();
|
39
50
|
}
|
40
51
|
// Hover & Active
|
41
|
-
a:hover,
|
52
|
+
a:hover,
|
53
|
+
a:active {
|
42
54
|
outline: 0;
|
43
55
|
}
|
44
56
|
|
45
57
|
// Prevents sub and sup affecting line-height in all browsers
|
46
58
|
// -------------------------
|
47
59
|
|
48
|
-
sub,
|
60
|
+
sub,
|
61
|
+
sup {
|
49
62
|
position: relative;
|
50
63
|
font-size: 75%;
|
51
64
|
line-height: 0;
|
@@ -62,30 +75,38 @@ sub {
|
|
62
75
|
// -------------------------
|
63
76
|
|
64
77
|
img {
|
65
|
-
max-width: 100%;
|
66
78
|
height: auto;
|
67
79
|
border: 0;
|
68
80
|
-ms-interpolation-mode: bicubic;
|
81
|
+
vertical-align: middle;
|
69
82
|
}
|
70
83
|
|
71
84
|
// Forms
|
72
85
|
// -------------------------
|
73
86
|
|
74
87
|
// Font size in all browsers, margin changes, misc consistency
|
75
|
-
button,
|
88
|
+
button,
|
89
|
+
input,
|
90
|
+
select,
|
91
|
+
textarea {
|
76
92
|
margin: 0;
|
77
93
|
font-size: 100%;
|
78
94
|
vertical-align: middle;
|
79
95
|
}
|
80
|
-
button,
|
96
|
+
button,
|
97
|
+
input {
|
81
98
|
*overflow: visible; // Inner spacing ie IE6/7
|
82
99
|
line-height: normal; // FF3/4 have !important on line-height in UA stylesheet
|
83
100
|
}
|
84
|
-
button::-moz-focus-inner,
|
101
|
+
button::-moz-focus-inner,
|
102
|
+
input::-moz-focus-inner { // Inner padding and border oddities in FF3/4
|
85
103
|
padding: 0;
|
86
104
|
border: 0;
|
87
105
|
}
|
88
|
-
button,
|
106
|
+
button,
|
107
|
+
input[type="button"],
|
108
|
+
input[type="reset"],
|
109
|
+
input[type="submit"] {
|
89
110
|
cursor: pointer; // Cursors on all buttons applied consistently
|
90
111
|
-webkit-appearance: button; // Style clickable inputs in iOS
|
91
112
|
}
|