rmails 0.1.1
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 +7 -0
- data/.gitignore +20 -0
- data/Gemfile +24 -0
- data/Gemfile.lock +167 -0
- data/LICENSE.txt +20 -0
- data/README.markdown +9 -0
- data/Rakefile +31 -0
- data/Rakefile1 +9 -0
- data/Vagrantfile +51 -0
- data/app/assets/images/arrow_bottom.gif +0 -0
- data/app/assets/images/arrow_right.gif +0 -0
- data/app/assets/images/at-sign.png +0 -0
- data/app/assets/images/checkerboard.gif +0 -0
- data/app/assets/images/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/glyphicons-halflings.png +0 -0
- data/app/assets/images/icon_draft.gif +0 -0
- data/app/assets/images/icon_layout.gif +0 -0
- data/app/assets/images/icon_move.gif +0 -0
- data/app/assets/images/icon_regular.gif +0 -0
- data/app/assets/images/icon_snippet.gif +0 -0
- data/app/assets/images/nav_arrow.png +0 -0
- data/app/assets/images/x.png +0 -0
- data/app/assets/javascripts/application.coffee.erb +27 -0
- data/app/assets/javascripts/canjs/can.construct.proxy.js +60 -0
- data/app/assets/javascripts/canjs/can.construct.super.js +44 -0
- data/app/assets/javascripts/canjs/can.control.plugin.js +245 -0
- data/app/assets/javascripts/canjs/can.control.view.js +88 -0
- data/app/assets/javascripts/canjs/can.dojo.js +3669 -0
- data/app/assets/javascripts/canjs/can.dojo.min.js +66 -0
- data/app/assets/javascripts/canjs/can.fixture.js +1020 -0
- data/app/assets/javascripts/canjs/can.jquery.js +2995 -0
- data/app/assets/javascripts/canjs/can.jquery.min.js +52 -0
- data/app/assets/javascripts/canjs/can.mootools.js +3462 -0
- data/app/assets/javascripts/canjs/can.mootools.min.js +63 -0
- data/app/assets/javascripts/canjs/can.observe.attributes.js +293 -0
- data/app/assets/javascripts/canjs/can.observe.backup.js +368 -0
- data/app/assets/javascripts/canjs/can.observe.delegate.js +359 -0
- data/app/assets/javascripts/canjs/can.observe.setter.js +58 -0
- data/app/assets/javascripts/canjs/can.observe.validations.js +374 -0
- data/app/assets/javascripts/canjs/can.view.modifiers.js +292 -0
- data/app/assets/javascripts/canjs/can.yui.js +3530 -0
- data/app/assets/javascripts/canjs/can.yui.min.js +65 -0
- data/app/assets/javascripts/canjs/can.zepto.js +3426 -0
- data/app/assets/javascripts/canjs/can.zepto.min.js +62 -0
- data/app/assets/javascripts/controls/admins.coffee.erb +105 -0
- data/app/assets/javascripts/controls/aliases.coffee.erb +91 -0
- data/app/assets/javascripts/controls/domains.coffee.erb +115 -0
- data/app/assets/javascripts/controls/settings.coffee.erb +47 -0
- data/app/assets/javascripts/controls/users.coffee.erb +94 -0
- data/app/assets/javascripts/lib/facebox.js +311 -0
- data/app/assets/javascripts/lib/html5.js +2 -0
- data/app/assets/javascripts/lib/jquery.js +9301 -0
- data/app/assets/javascripts/lib/jquery_formparams.js +108 -0
- data/app/assets/javascripts/lib/jquery_input_hint.js +20 -0
- data/app/assets/javascripts/lib/jquery_paginate.js +120 -0
- data/app/assets/javascripts/lib/jquery_ui_custom.js +6 -0
- data/app/assets/javascripts/lib/json2.js +487 -0
- data/app/assets/javascripts/lib/utils.coffee.erb +48 -0
- data/app/assets/javascripts/models/admin.coffee.erb +42 -0
- data/app/assets/javascripts/models/alias.coffee.erb +28 -0
- data/app/assets/javascripts/models/domain.coffee.erb +39 -0
- data/app/assets/javascripts/models/property.coffee.erb +18 -0
- data/app/assets/javascripts/models/user.coffee.erb +29 -0
- data/app/assets/stylesheets/application.sass +156 -0
- data/app/assets/stylesheets/base.css.sass +243 -0
- data/app/assets/stylesheets/facebox.css +80 -0
- data/app/assets/stylesheets/lib/bootstrap.css +9 -0
- data/app/assets/stylesheets/twitter/bootstrap-responsive.scss +1 -0
- data/app/assets/stylesheets/twitter/bootstrap.scss +63 -0
- data/app/assets/stylesheets/twitter/bootstrap/_accordion.scss +34 -0
- data/app/assets/stylesheets/twitter/bootstrap/_alerts.scss +79 -0
- data/app/assets/stylesheets/twitter/bootstrap/_breadcrumbs.scss +24 -0
- data/app/assets/stylesheets/twitter/bootstrap/_button-groups.scss +229 -0
- data/app/assets/stylesheets/twitter/bootstrap/_buttons.scss +228 -0
- data/app/assets/stylesheets/twitter/bootstrap/_carousel.scss +158 -0
- data/app/assets/stylesheets/twitter/bootstrap/_close.scss +32 -0
- data/app/assets/stylesheets/twitter/bootstrap/_code.scss +61 -0
- data/app/assets/stylesheets/twitter/bootstrap/_component-animations.scss +22 -0
- data/app/assets/stylesheets/twitter/bootstrap/_dropdowns.scss +237 -0
- data/app/assets/stylesheets/twitter/bootstrap/_forms.scss +689 -0
- data/app/assets/stylesheets/twitter/bootstrap/_grid.scss +21 -0
- data/app/assets/stylesheets/twitter/bootstrap/_hero-unit.scss +25 -0
- data/app/assets/stylesheets/twitter/bootstrap/_labels-badges.scss +83 -0
- data/app/assets/stylesheets/twitter/bootstrap/_layouts.scss +16 -0
- data/app/assets/stylesheets/twitter/bootstrap/_media.scss +55 -0
- data/app/assets/stylesheets/twitter/bootstrap/_mixins.scss +690 -0
- data/app/assets/stylesheets/twitter/bootstrap/_modals.scss +95 -0
- data/app/assets/stylesheets/twitter/bootstrap/_navbar.scss +497 -0
- data/app/assets/stylesheets/twitter/bootstrap/_navs.scss +409 -0
- data/app/assets/stylesheets/twitter/bootstrap/_pager.scss +43 -0
- data/app/assets/stylesheets/twitter/bootstrap/_pagination.scss +123 -0
- data/app/assets/stylesheets/twitter/bootstrap/_popovers.scss +133 -0
- data/app/assets/stylesheets/twitter/bootstrap/_progress-bars.scss +122 -0
- data/app/assets/stylesheets/twitter/bootstrap/_reset.scss +216 -0
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-1200px-min.scss +28 -0
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-767px-max.scss +193 -0
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-768px-979px.scss +19 -0
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-navbar.scss +189 -0
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss +74 -0
- data/app/assets/stylesheets/twitter/bootstrap/_scaffolding.scss +53 -0
- data/app/assets/stylesheets/twitter/bootstrap/_sprites.scss +197 -0
- data/app/assets/stylesheets/twitter/bootstrap/_tables.scss +235 -0
- data/app/assets/stylesheets/twitter/bootstrap/_thumbnails.scss +53 -0
- data/app/assets/stylesheets/twitter/bootstrap/_tooltip.scss +70 -0
- data/app/assets/stylesheets/twitter/bootstrap/_type.scss +247 -0
- data/app/assets/stylesheets/twitter/bootstrap/_utilities.scss +45 -0
- data/app/assets/stylesheets/twitter/bootstrap/_variables.scss +301 -0
- data/app/assets/stylesheets/twitter/bootstrap/_wells.scss +29 -0
- data/app/assets/stylesheets/twitter/bootstrap/responsive.scss +48 -0
- data/app/controllers/admin_users_controller.rb +62 -0
- data/app/controllers/aliases_controller.rb +35 -0
- data/app/controllers/application_controller.rb +20 -0
- data/app/controllers/domains_controller.rb +48 -0
- data/app/controllers/server_controller.rb +28 -0
- data/app/controllers/users_controller.rb +35 -0
- data/app/helpers/admin_users_helper.rb +11 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/helpers/domains_helper.rb +25 -0
- data/app/helpers/server_helper.rb +30 -0
- data/app/mailers/.gitkeep +0 -0
- data/app/models/.gitkeep +0 -0
- data/app/models/admin_user.rb +54 -0
- data/app/models/certificate_manager.rb +46 -0
- data/app/models/property.rb +103 -0
- data/app/models/property/awstats.rb +15 -0
- data/app/models/property/dovecot.rb +61 -0
- data/app/models/property/dspam.rb +45 -0
- data/app/models/property/nginx.rb +47 -0
- data/app/models/property/postfix.rb +64 -0
- data/app/models/property_value_validator.rb +41 -0
- data/app/models/system_manager.rb +88 -0
- data/app/models/virtual_alias.rb +13 -0
- data/app/models/virtual_domain.rb +15 -0
- data/app/models/virtual_user.rb +51 -0
- data/app/views/admin_users/_form.html.haml +21 -0
- data/app/views/admin_users/first.html.haml +12 -0
- data/app/views/admin_users/index.html.haml +61 -0
- data/app/views/aliases/_form.html.haml +11 -0
- data/app/views/aliases/_list.html.haml +0 -0
- data/app/views/devise/confirmations/new.html.haml +9 -0
- data/app/views/devise/mailer/confirmation_instructions.html.haml +4 -0
- data/app/views/devise/mailer/reset_password_instructions.html.haml +6 -0
- data/app/views/devise/mailer/unlock_instructions.html.haml +5 -0
- data/app/views/devise/passwords/edit.html.haml +14 -0
- data/app/views/devise/passwords/new.html.haml +12 -0
- data/app/views/devise/registrations/edit.html.haml +18 -0
- data/app/views/devise/registrations/new.html.haml +10 -0
- data/app/views/devise/sessions/new.html.haml +16 -0
- data/app/views/devise/shared/_links.haml +17 -0
- data/app/views/devise/unlocks/new.html.haml +11 -0
- data/app/views/domains/_fields.html.haml +0 -0
- data/app/views/domains/_form.html.haml +7 -0
- data/app/views/domains/index.html.haml +133 -0
- data/app/views/domains/show.html.haml +1 -0
- data/app/views/layouts/_nav.html.haml +3 -0
- data/app/views/layouts/application.html.haml +29 -0
- data/app/views/server/_certificates.html.haml +10 -0
- data/app/views/server/_dovecot.html.haml +27 -0
- data/app/views/server/_dspam.html.haml +9 -0
- data/app/views/server/_postfix_info.html.haml +5 -0
- data/app/views/server/_postfix_test.html.haml +5 -0
- data/app/views/server/_status.html.haml +11 -0
- data/app/views/server/index.html.haml +36 -0
- data/app/views/users/_form.html.haml +11 -0
- data/app/views/users/_list.html.haml +0 -0
- data/bin/rmails +43 -0
- data/config.ru +4 -0
- data/config/application.rb +62 -0
- data/config/boot.rb +6 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +37 -0
- data/config/environments/production.rb +67 -0
- data/config/environments/test.rb +37 -0
- data/config/initializers/backtrace_silencers.rb +7 -0
- data/config/initializers/devise.rb +240 -0
- data/config/initializers/devise_encryptable.rb +37 -0
- data/config/initializers/devise_models.rb +86 -0
- data/config/initializers/inflections.rb +15 -0
- data/config/initializers/mime_types.rb +5 -0
- data/config/initializers/secret_token.rb +7 -0
- data/config/initializers/session_store.rb +8 -0
- data/config/initializers/simple_form.rb +142 -0
- data/config/initializers/simple_form_bootstrap.rb +45 -0
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/locales/cz.yml +45 -0
- data/config/locales/devise.cz.yml +47 -0
- data/config/locales/devise.en.yml +60 -0
- data/config/locales/en.yml +5 -0
- data/config/locales/server/cz.yml +14 -0
- data/config/locales/server/en.yml +7 -0
- data/config/locales/server/help/dovecot/cz.yml +21 -0
- data/config/locales/server/help/dovecot/en.yml +18 -0
- data/config/locales/server/help/dspam/cz.yml +10 -0
- data/config/locales/server/help/dspam/en.yml +4 -0
- data/config/locales/server/key/dovecot/cz.yml +23 -0
- data/config/locales/server/key/dovecot/en.yml +20 -0
- data/config/locales/server/key/dspam/cz.yml +10 -0
- data/config/locales/server/key/dspam/en.yml +4 -0
- data/config/locales/simple_form.en.yml +26 -0
- data/config/locales/views/admin_users/cz.yml +25 -0
- data/config/locales/views/admin_users/en.yml +5 -0
- data/config/locales/views/aliases/cz.yml +17 -0
- data/config/locales/views/aliases/en.yml +1 -0
- data/config/locales/views/devise/cz.yml +26 -0
- data/config/locales/views/devise/en.yml +13 -0
- data/config/locales/views/domains/cz.yml +15 -0
- data/config/locales/views/domains/en.yml +15 -0
- data/config/locales/views/server/cz.yml +19 -0
- data/config/locales/views/server/en.yml +3 -0
- data/config/locales/views/users/cz.yml +18 -0
- data/config/locales/views/users/en.yml +1 -0
- data/config/routes.rb +80 -0
- data/db/migrate/20121112201233_virtual_domain.rb +11 -0
- data/db/migrate/20121112201247_virtual_alias.rb +10 -0
- data/db/migrate/20121112201341_virtual_user.rb +34 -0
- data/db/migrate/20121112201359_create_admin_user.rb +30 -0
- data/db/migrate/20121112201411_server_configuration.rb +13 -0
- data/db/migrate/20130304083938_join_domains_users.rb +12 -0
- data/db/migrate/20130311214040_create_versions.rb +18 -0
- data/db/seeds.rb +45 -0
- data/lib/devise-encryptable.rb +1 -0
- data/lib/rmails.rb +5 -0
- data/lib/rmails/installer.rb +37 -0
- data/lib/rmails/version.rb +3 -0
- data/lib/tasks/.gitkeep +0 -0
- data/lib/templates/haml/scaffold/_form.html.haml +10 -0
- data/locals +0 -0
- data/log/.gitkeep +0 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +25 -0
- data/public/favicon.ico +0 -0
- data/public/fonts/London.eot +0 -0
- data/public/fonts/London.otf +0 -0
- data/public/fonts/London.woff +0 -0
- data/public/fonts/LondonBold.otf +0 -0
- data/public/robots.txt +5 -0
- data/rmails.gemspec +35 -0
- data/script/prepflog.pl +576 -0
- data/script/rails +6 -0
- data/system/config/automateit_env.rb +16 -0
- data/system/config/fields.yml +48 -0
- data/system/config/tags.yml +39 -0
- data/system/dist/README_AutomateIt_dist.txt +20 -0
- data/system/dist/amavis/spamassassin.cf.erb +85 -0
- data/system/dist/amavis/user.erb +33 -0
- data/system/dist/awstats/awstats.mail.conf.erb +41 -0
- data/system/dist/awstats/prepflog.pl +576 -0
- data/system/dist/dovecot/dovecot-sql.conf.ext.erb +14 -0
- data/system/dist/dovecot/dovecot.conf.erb +297 -0
- data/system/dist/dovecot/old_dovecot.conf.erb +63 -0
- data/system/dist/dspam/conf.erb +96 -0
- data/system/dist/dspam/pgsql.conf +33 -0
- data/system/dist/nginx/awstats.erb +17 -0
- data/system/dist/nginx/rmails.erb +40 -0
- data/system/dist/postfix/email2email.cf.erb +5 -0
- data/system/dist/postfix/main.cf.erb +118 -0
- data/system/dist/postfix/master.cf.erb +74 -0
- data/system/dist/postfix/sasl.conf.erb +3 -0
- data/system/dist/postfix/sender_login_maps.cf.erb +5 -0
- data/system/dist/postfix/virtual_alias_maps.cf.erb +5 -0
- data/system/dist/postfix/virtual_mailbox_domains.cf.erb +5 -0
- data/system/dist/postfix/virtual_mailbox_maps.cf.erb +5 -0
- data/system/dist/postgresql/postgresql.conf.erb +54 -0
- data/system/dist/rmails/Gemfile.1 +8 -0
- data/system/dist/rmails/Gemfile.2 +24 -0
- data/system/dist/rmails/database.yml.erb +15 -0
- data/system/dist/sudoers +37 -0
- data/system/lib/README_AutomateIt_lib.txt +22 -0
- data/system/lib/dkim_key.rb +9 -0
- data/system/lib/smtpd_key.rb +39 -0
- data/system/lib/ssl.rb +23 -0
- data/system/recipes/01_prepare_server.rb +84 -0
- data/system/recipes/02_setup_database.rb +65 -0
- data/system/recipes/03_setup_postfix.rb +124 -0
- data/system/recipes/04_setup_dovecot.rb +78 -0
- data/system/recipes/05_setup_nginx.rb +29 -0
- data/system/recipes/06_setup_dspam.rb +24 -0
- data/system/recipes/07_setup_amavis.rb +16 -0
- data/system/recipes/08_setup_spamassassin.rb +22 -0
- data/system/recipes/09_setup_awstats.rb +49 -0
- data/system/recipes/XX_start_services.rb +5 -0
- data/test/fixtures/.gitkeep +0 -0
- data/test/functional/.gitkeep +0 -0
- data/test/functional/aliases_controller_test.rb +7 -0
- data/test/functional/domains_controller_test.rb +7 -0
- data/test/functional/users_controller_test.rb +7 -0
- data/test/integration/.gitkeep +0 -0
- data/test/performance/browsing_test.rb +12 -0
- data/test/test_helper.rb +13 -0
- data/test/unit/.gitkeep +0 -0
- data/test/unit/helpers/aliases_helper_test.rb +4 -0
- data/test/unit/helpers/domains_helper_test.rb +4 -0
- data/test/unit/helpers/users_helper_test.rb +4 -0
- data/vendor/assets/javascripts/.gitkeep +0 -0
- data/vendor/assets/javascripts/canjs/can.construct.proxy.js +60 -0
- data/vendor/assets/javascripts/canjs/can.construct.super.js +44 -0
- data/vendor/assets/javascripts/canjs/can.control.plugin.js +245 -0
- data/vendor/assets/javascripts/canjs/can.control.view.js +88 -0
- data/vendor/assets/javascripts/canjs/can.dojo.js +3669 -0
- data/vendor/assets/javascripts/canjs/can.dojo.min.js +66 -0
- data/vendor/assets/javascripts/canjs/can.fixture.js +1020 -0
- data/vendor/assets/javascripts/canjs/can.jquery.js +2995 -0
- data/vendor/assets/javascripts/canjs/can.jquery.min.js +52 -0
- data/vendor/assets/javascripts/canjs/can.mootools.js +3462 -0
- data/vendor/assets/javascripts/canjs/can.mootools.min.js +63 -0
- data/vendor/assets/javascripts/canjs/can.observe.attributes.js +293 -0
- data/vendor/assets/javascripts/canjs/can.observe.backup.js +368 -0
- data/vendor/assets/javascripts/canjs/can.observe.delegate.js +359 -0
- data/vendor/assets/javascripts/canjs/can.observe.setter.js +58 -0
- data/vendor/assets/javascripts/canjs/can.observe.validations.js +374 -0
- data/vendor/assets/javascripts/canjs/can.view.modifiers.js +292 -0
- data/vendor/assets/javascripts/canjs/can.yui.js +3530 -0
- data/vendor/assets/javascripts/canjs/can.yui.min.js +65 -0
- data/vendor/assets/javascripts/canjs/can.zepto.js +3426 -0
- data/vendor/assets/javascripts/canjs/can.zepto.min.js +62 -0
- data/vendor/assets/javascripts/twitter/bootstrap-affix.js +104 -0
- data/vendor/assets/javascripts/twitter/bootstrap-alert.js +90 -0
- data/vendor/assets/javascripts/twitter/bootstrap-button.js +96 -0
- data/vendor/assets/javascripts/twitter/bootstrap-carousel.js +176 -0
- data/vendor/assets/javascripts/twitter/bootstrap-collapse.js +158 -0
- data/vendor/assets/javascripts/twitter/bootstrap-dropdown.js +150 -0
- data/vendor/assets/javascripts/twitter/bootstrap-modal.js +239 -0
- data/vendor/assets/javascripts/twitter/bootstrap-popover.js +103 -0
- data/vendor/assets/javascripts/twitter/bootstrap-scrollspy.js +151 -0
- data/vendor/assets/javascripts/twitter/bootstrap-tab.js +135 -0
- data/vendor/assets/javascripts/twitter/bootstrap-tooltip.js +275 -0
- data/vendor/assets/javascripts/twitter/bootstrap-transition.js +60 -0
- data/vendor/assets/javascripts/twitter/bootstrap-typeahead.js +300 -0
- data/vendor/assets/javascripts/twitter/my/bootstrap-typeahead.js +311 -0
- data/vendor/assets/stylesheets/.gitkeep +0 -0
- metadata +470 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
/* ===========================================================
|
|
2
|
+
* bootstrap-popover.js v2.1.1
|
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#popovers
|
|
4
|
+
* ===========================================================
|
|
5
|
+
* Copyright 2012 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
|
+
|
|
21
|
+
!function ($) {
|
|
22
|
+
|
|
23
|
+
"use strict"; // jshint ;_;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
/* POPOVER PUBLIC CLASS DEFINITION
|
|
27
|
+
* =============================== */
|
|
28
|
+
|
|
29
|
+
var Popover = function (element, options) {
|
|
30
|
+
this.init('popover', element, options)
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
/* NOTE: POPOVER EXTENDS BOOTSTRAP-TOOLTIP.js
|
|
35
|
+
========================================== */
|
|
36
|
+
|
|
37
|
+
Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype, {
|
|
38
|
+
|
|
39
|
+
constructor: Popover
|
|
40
|
+
|
|
41
|
+
, setContent: function () {
|
|
42
|
+
var $tip = this.tip()
|
|
43
|
+
, title = this.getTitle()
|
|
44
|
+
, content = this.getContent()
|
|
45
|
+
|
|
46
|
+
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
|
|
47
|
+
$tip.find('.popover-content > *')[this.options.html ? 'html' : 'text'](content)
|
|
48
|
+
|
|
49
|
+
$tip.removeClass('fade top bottom left right in')
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
, hasContent: function () {
|
|
53
|
+
return this.getTitle() || this.getContent()
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
, getContent: function () {
|
|
57
|
+
var content
|
|
58
|
+
, $e = this.$element
|
|
59
|
+
, o = this.options
|
|
60
|
+
|
|
61
|
+
content = $e.attr('data-content')
|
|
62
|
+
|| (typeof o.content == 'function' ? o.content.call($e[0]) : o.content)
|
|
63
|
+
|
|
64
|
+
return content
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
, tip: function () {
|
|
68
|
+
if (!this.$tip) {
|
|
69
|
+
this.$tip = $(this.options.template)
|
|
70
|
+
}
|
|
71
|
+
return this.$tip
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
, destroy: function () {
|
|
75
|
+
this.hide().$element.off('.' + this.type).removeData(this.type)
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
})
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
/* POPOVER PLUGIN DEFINITION
|
|
82
|
+
* ======================= */
|
|
83
|
+
|
|
84
|
+
$.fn.popover = function (option) {
|
|
85
|
+
return this.each(function () {
|
|
86
|
+
var $this = $(this)
|
|
87
|
+
, data = $this.data('popover')
|
|
88
|
+
, options = typeof option == 'object' && option
|
|
89
|
+
if (!data) $this.data('popover', (data = new Popover(this, options)))
|
|
90
|
+
if (typeof option == 'string') data[option]()
|
|
91
|
+
})
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
$.fn.popover.Constructor = Popover
|
|
95
|
+
|
|
96
|
+
$.fn.popover.defaults = $.extend({} , $.fn.tooltip.defaults, {
|
|
97
|
+
placement: 'right'
|
|
98
|
+
, trigger: 'click'
|
|
99
|
+
, content: ''
|
|
100
|
+
, template: '<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"><p></p></div></div></div>'
|
|
101
|
+
})
|
|
102
|
+
|
|
103
|
+
}(window.jQuery);
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
/* =============================================================
|
|
2
|
+
* bootstrap-scrollspy.js v2.1.1
|
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#scrollspy
|
|
4
|
+
* =============================================================
|
|
5
|
+
* Copyright 2012 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
|
+
|
|
21
|
+
!function ($) {
|
|
22
|
+
|
|
23
|
+
"use strict"; // jshint ;_;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
/* SCROLLSPY CLASS DEFINITION
|
|
27
|
+
* ========================== */
|
|
28
|
+
|
|
29
|
+
function ScrollSpy(element, options) {
|
|
30
|
+
var process = $.proxy(this.process, this)
|
|
31
|
+
, $element = $(element).is('body') ? $(window) : $(element)
|
|
32
|
+
, href
|
|
33
|
+
this.options = $.extend({}, $.fn.scrollspy.defaults, options)
|
|
34
|
+
this.$scrollElement = $element.on('scroll.scroll-spy.data-api', process)
|
|
35
|
+
this.selector = (this.options.target
|
|
36
|
+
|| ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
|
37
|
+
|| '') + ' .nav li > a'
|
|
38
|
+
this.$body = $('body')
|
|
39
|
+
this.refresh()
|
|
40
|
+
this.process()
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
ScrollSpy.prototype = {
|
|
44
|
+
|
|
45
|
+
constructor: ScrollSpy
|
|
46
|
+
|
|
47
|
+
, refresh: function () {
|
|
48
|
+
var self = this
|
|
49
|
+
, $targets
|
|
50
|
+
|
|
51
|
+
this.offsets = $([])
|
|
52
|
+
this.targets = $([])
|
|
53
|
+
|
|
54
|
+
$targets = this.$body
|
|
55
|
+
.find(this.selector)
|
|
56
|
+
.map(function () {
|
|
57
|
+
var $el = $(this)
|
|
58
|
+
, href = $el.data('target') || $el.attr('href')
|
|
59
|
+
, $href = /^#\w/.test(href) && $(href)
|
|
60
|
+
return ( $href
|
|
61
|
+
&& $href.length
|
|
62
|
+
&& [[ $href.position().top, href ]] ) || null
|
|
63
|
+
})
|
|
64
|
+
.sort(function (a, b) { return a[0] - b[0] })
|
|
65
|
+
.each(function () {
|
|
66
|
+
self.offsets.push(this[0])
|
|
67
|
+
self.targets.push(this[1])
|
|
68
|
+
})
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
, process: function () {
|
|
72
|
+
var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
|
|
73
|
+
, scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
|
|
74
|
+
, maxScroll = scrollHeight - this.$scrollElement.height()
|
|
75
|
+
, offsets = this.offsets
|
|
76
|
+
, targets = this.targets
|
|
77
|
+
, activeTarget = this.activeTarget
|
|
78
|
+
, i
|
|
79
|
+
|
|
80
|
+
if (scrollTop >= maxScroll) {
|
|
81
|
+
return activeTarget != (i = targets.last()[0])
|
|
82
|
+
&& this.activate ( i )
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
for (i = offsets.length; i--;) {
|
|
86
|
+
activeTarget != targets[i]
|
|
87
|
+
&& scrollTop >= offsets[i]
|
|
88
|
+
&& (!offsets[i + 1] || scrollTop <= offsets[i + 1])
|
|
89
|
+
&& this.activate( targets[i] )
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
, activate: function (target) {
|
|
94
|
+
var active
|
|
95
|
+
, selector
|
|
96
|
+
|
|
97
|
+
this.activeTarget = target
|
|
98
|
+
|
|
99
|
+
$(this.selector)
|
|
100
|
+
.parent('.active')
|
|
101
|
+
.removeClass('active')
|
|
102
|
+
|
|
103
|
+
selector = this.selector
|
|
104
|
+
+ '[data-target="' + target + '"],'
|
|
105
|
+
+ this.selector + '[href="' + target + '"]'
|
|
106
|
+
|
|
107
|
+
active = $(selector)
|
|
108
|
+
.parent('li')
|
|
109
|
+
.addClass('active')
|
|
110
|
+
|
|
111
|
+
if (active.parent('.dropdown-menu').length) {
|
|
112
|
+
active = active.closest('li.dropdown').addClass('active')
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
active.trigger('activate')
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
/* SCROLLSPY PLUGIN DEFINITION
|
|
122
|
+
* =========================== */
|
|
123
|
+
|
|
124
|
+
$.fn.scrollspy = function (option) {
|
|
125
|
+
return this.each(function () {
|
|
126
|
+
var $this = $(this)
|
|
127
|
+
, data = $this.data('scrollspy')
|
|
128
|
+
, options = typeof option == 'object' && option
|
|
129
|
+
if (!data) $this.data('scrollspy', (data = new ScrollSpy(this, options)))
|
|
130
|
+
if (typeof option == 'string') data[option]()
|
|
131
|
+
})
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
$.fn.scrollspy.Constructor = ScrollSpy
|
|
135
|
+
|
|
136
|
+
$.fn.scrollspy.defaults = {
|
|
137
|
+
offset: 10
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
/* SCROLLSPY DATA-API
|
|
142
|
+
* ================== */
|
|
143
|
+
|
|
144
|
+
$(window).on('load', function () {
|
|
145
|
+
$('[data-spy="scroll"]').each(function () {
|
|
146
|
+
var $spy = $(this)
|
|
147
|
+
$spy.scrollspy($spy.data())
|
|
148
|
+
})
|
|
149
|
+
})
|
|
150
|
+
|
|
151
|
+
}(window.jQuery);
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
/* ========================================================
|
|
2
|
+
* bootstrap-tab.js v2.1.1
|
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#tabs
|
|
4
|
+
* ========================================================
|
|
5
|
+
* Copyright 2012 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
|
+
|
|
21
|
+
!function ($) {
|
|
22
|
+
|
|
23
|
+
"use strict"; // jshint ;_;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
/* TAB CLASS DEFINITION
|
|
27
|
+
* ==================== */
|
|
28
|
+
|
|
29
|
+
var Tab = function (element) {
|
|
30
|
+
this.element = $(element)
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
Tab.prototype = {
|
|
34
|
+
|
|
35
|
+
constructor: Tab
|
|
36
|
+
|
|
37
|
+
, show: function () {
|
|
38
|
+
var $this = this.element
|
|
39
|
+
, $ul = $this.closest('ul:not(.dropdown-menu)')
|
|
40
|
+
, selector = $this.attr('data-target')
|
|
41
|
+
, previous
|
|
42
|
+
, $target
|
|
43
|
+
, e
|
|
44
|
+
|
|
45
|
+
if (!selector) {
|
|
46
|
+
selector = $this.attr('href')
|
|
47
|
+
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
if ( $this.parent('li').hasClass('active') ) return
|
|
51
|
+
|
|
52
|
+
previous = $ul.find('.active a').last()[0]
|
|
53
|
+
|
|
54
|
+
e = $.Event('show', {
|
|
55
|
+
relatedTarget: previous
|
|
56
|
+
})
|
|
57
|
+
|
|
58
|
+
$this.trigger(e)
|
|
59
|
+
|
|
60
|
+
if (e.isDefaultPrevented()) return
|
|
61
|
+
|
|
62
|
+
$target = $(selector)
|
|
63
|
+
|
|
64
|
+
this.activate($this.parent('li'), $ul)
|
|
65
|
+
this.activate($target, $target.parent(), function () {
|
|
66
|
+
$this.trigger({
|
|
67
|
+
type: 'shown'
|
|
68
|
+
, relatedTarget: previous
|
|
69
|
+
})
|
|
70
|
+
})
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
, activate: function ( element, container, callback) {
|
|
74
|
+
var $active = container.find('> .active')
|
|
75
|
+
, transition = callback
|
|
76
|
+
&& $.support.transition
|
|
77
|
+
&& $active.hasClass('fade')
|
|
78
|
+
|
|
79
|
+
function next() {
|
|
80
|
+
$active
|
|
81
|
+
.removeClass('active')
|
|
82
|
+
.find('> .dropdown-menu > .active')
|
|
83
|
+
.removeClass('active')
|
|
84
|
+
|
|
85
|
+
element.addClass('active')
|
|
86
|
+
|
|
87
|
+
if (transition) {
|
|
88
|
+
element[0].offsetWidth // reflow for transition
|
|
89
|
+
element.addClass('in')
|
|
90
|
+
} else {
|
|
91
|
+
element.removeClass('fade')
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
if ( element.parent('.dropdown-menu') ) {
|
|
95
|
+
element.closest('li.dropdown').addClass('active')
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
callback && callback()
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
transition ?
|
|
102
|
+
$active.one($.support.transition.end, next) :
|
|
103
|
+
next()
|
|
104
|
+
|
|
105
|
+
$active.removeClass('in')
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
/* TAB PLUGIN DEFINITION
|
|
111
|
+
* ===================== */
|
|
112
|
+
|
|
113
|
+
$.fn.tab = function ( option ) {
|
|
114
|
+
return this.each(function () {
|
|
115
|
+
var $this = $(this)
|
|
116
|
+
, data = $this.data('tab')
|
|
117
|
+
if (!data) $this.data('tab', (data = new Tab(this)))
|
|
118
|
+
if (typeof option == 'string') data[option]()
|
|
119
|
+
})
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
$.fn.tab.Constructor = Tab
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
/* TAB DATA-API
|
|
126
|
+
* ============ */
|
|
127
|
+
|
|
128
|
+
$(function () {
|
|
129
|
+
$('body').on('click.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
|
|
130
|
+
e.preventDefault()
|
|
131
|
+
$(this).tab('show')
|
|
132
|
+
})
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
}(window.jQuery);
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
/* ===========================================================
|
|
2
|
+
* bootstrap-tooltip.js v2.1.1
|
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#tooltips
|
|
4
|
+
* Inspired by the original jQuery.tipsy by Jason Frame
|
|
5
|
+
* ===========================================================
|
|
6
|
+
* Copyright 2012 Twitter, Inc.
|
|
7
|
+
*
|
|
8
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
+
* you may not use this file except in compliance with the License.
|
|
10
|
+
* You may obtain a copy of the License at
|
|
11
|
+
*
|
|
12
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
+
*
|
|
14
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
15
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
16
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
+
* See the License for the specific language governing permissions and
|
|
18
|
+
* limitations under the License.
|
|
19
|
+
* ========================================================== */
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
!function ($) {
|
|
23
|
+
|
|
24
|
+
"use strict"; // jshint ;_;
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
/* TOOLTIP PUBLIC CLASS DEFINITION
|
|
28
|
+
* =============================== */
|
|
29
|
+
|
|
30
|
+
var Tooltip = function (element, options) {
|
|
31
|
+
this.init('tooltip', element, options)
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
Tooltip.prototype = {
|
|
35
|
+
|
|
36
|
+
constructor: Tooltip
|
|
37
|
+
|
|
38
|
+
, init: function (type, element, options) {
|
|
39
|
+
var eventIn
|
|
40
|
+
, eventOut
|
|
41
|
+
|
|
42
|
+
this.type = type
|
|
43
|
+
this.$element = $(element)
|
|
44
|
+
this.options = this.getOptions(options)
|
|
45
|
+
this.enabled = true
|
|
46
|
+
|
|
47
|
+
if (this.options.trigger == 'click') {
|
|
48
|
+
this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
|
|
49
|
+
} else if (this.options.trigger != 'manual') {
|
|
50
|
+
eventIn = this.options.trigger == 'hover' ? 'mouseenter' : 'focus'
|
|
51
|
+
eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur'
|
|
52
|
+
this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
|
|
53
|
+
this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
this.options.selector ?
|
|
57
|
+
(this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
|
|
58
|
+
this.fixTitle()
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
, getOptions: function (options) {
|
|
62
|
+
options = $.extend({}, $.fn[this.type].defaults, options, this.$element.data())
|
|
63
|
+
|
|
64
|
+
if (options.delay && typeof options.delay == 'number') {
|
|
65
|
+
options.delay = {
|
|
66
|
+
show: options.delay
|
|
67
|
+
, hide: options.delay
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
return options
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
, enter: function (e) {
|
|
75
|
+
var self = $(e.currentTarget)[this.type](this._options).data(this.type)
|
|
76
|
+
|
|
77
|
+
if (!self.options.delay || !self.options.delay.show) return self.show()
|
|
78
|
+
|
|
79
|
+
clearTimeout(this.timeout)
|
|
80
|
+
self.hoverState = 'in'
|
|
81
|
+
this.timeout = setTimeout(function() {
|
|
82
|
+
if (self.hoverState == 'in') self.show()
|
|
83
|
+
}, self.options.delay.show)
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
, leave: function (e) {
|
|
87
|
+
var self = $(e.currentTarget)[this.type](this._options).data(this.type)
|
|
88
|
+
|
|
89
|
+
if (this.timeout) clearTimeout(this.timeout)
|
|
90
|
+
if (!self.options.delay || !self.options.delay.hide) return self.hide()
|
|
91
|
+
|
|
92
|
+
self.hoverState = 'out'
|
|
93
|
+
this.timeout = setTimeout(function() {
|
|
94
|
+
if (self.hoverState == 'out') self.hide()
|
|
95
|
+
}, self.options.delay.hide)
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
, show: function () {
|
|
99
|
+
var $tip
|
|
100
|
+
, inside
|
|
101
|
+
, pos
|
|
102
|
+
, actualWidth
|
|
103
|
+
, actualHeight
|
|
104
|
+
, placement
|
|
105
|
+
, tp
|
|
106
|
+
|
|
107
|
+
if (this.hasContent() && this.enabled) {
|
|
108
|
+
$tip = this.tip()
|
|
109
|
+
this.setContent()
|
|
110
|
+
|
|
111
|
+
if (this.options.animation) {
|
|
112
|
+
$tip.addClass('fade')
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
placement = typeof this.options.placement == 'function' ?
|
|
116
|
+
this.options.placement.call(this, $tip[0], this.$element[0]) :
|
|
117
|
+
this.options.placement
|
|
118
|
+
|
|
119
|
+
inside = /in/.test(placement)
|
|
120
|
+
|
|
121
|
+
$tip
|
|
122
|
+
.remove()
|
|
123
|
+
.css({ top: 0, left: 0, display: 'block' })
|
|
124
|
+
.appendTo(inside ? this.$element : document.body)
|
|
125
|
+
|
|
126
|
+
pos = this.getPosition(inside)
|
|
127
|
+
|
|
128
|
+
actualWidth = $tip[0].offsetWidth
|
|
129
|
+
actualHeight = $tip[0].offsetHeight
|
|
130
|
+
|
|
131
|
+
switch (inside ? placement.split(' ')[1] : placement) {
|
|
132
|
+
case 'bottom':
|
|
133
|
+
tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}
|
|
134
|
+
break
|
|
135
|
+
case 'top':
|
|
136
|
+
tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}
|
|
137
|
+
break
|
|
138
|
+
case 'left':
|
|
139
|
+
tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}
|
|
140
|
+
break
|
|
141
|
+
case 'right':
|
|
142
|
+
tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}
|
|
143
|
+
break
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
$tip
|
|
147
|
+
.css(tp)
|
|
148
|
+
.addClass(placement)
|
|
149
|
+
.addClass('in')
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
, setContent: function () {
|
|
154
|
+
var $tip = this.tip()
|
|
155
|
+
, title = this.getTitle()
|
|
156
|
+
|
|
157
|
+
$tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
|
|
158
|
+
$tip.removeClass('fade in top bottom left right')
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
, hide: function () {
|
|
162
|
+
var that = this
|
|
163
|
+
, $tip = this.tip()
|
|
164
|
+
|
|
165
|
+
$tip.removeClass('in')
|
|
166
|
+
|
|
167
|
+
function removeWithAnimation() {
|
|
168
|
+
var timeout = setTimeout(function () {
|
|
169
|
+
$tip.off($.support.transition.end).remove()
|
|
170
|
+
}, 500)
|
|
171
|
+
|
|
172
|
+
$tip.one($.support.transition.end, function () {
|
|
173
|
+
clearTimeout(timeout)
|
|
174
|
+
$tip.remove()
|
|
175
|
+
})
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
$.support.transition && this.$tip.hasClass('fade') ?
|
|
179
|
+
removeWithAnimation() :
|
|
180
|
+
$tip.remove()
|
|
181
|
+
|
|
182
|
+
return this
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
, fixTitle: function () {
|
|
186
|
+
var $e = this.$element
|
|
187
|
+
if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
|
|
188
|
+
$e.attr('data-original-title', $e.attr('title') || '').removeAttr('title')
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
, hasContent: function () {
|
|
193
|
+
return this.getTitle()
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
, getPosition: function (inside) {
|
|
197
|
+
return $.extend({}, (inside ? {top: 0, left: 0} : this.$element.offset()), {
|
|
198
|
+
width: this.$element[0].offsetWidth
|
|
199
|
+
, height: this.$element[0].offsetHeight
|
|
200
|
+
})
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
, getTitle: function () {
|
|
204
|
+
var title
|
|
205
|
+
, $e = this.$element
|
|
206
|
+
, o = this.options
|
|
207
|
+
|
|
208
|
+
title = $e.attr('data-original-title')
|
|
209
|
+
|| (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
|
|
210
|
+
|
|
211
|
+
return title
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
, tip: function () {
|
|
215
|
+
return this.$tip = this.$tip || $(this.options.template)
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
, validate: function () {
|
|
219
|
+
if (!this.$element[0].parentNode) {
|
|
220
|
+
this.hide()
|
|
221
|
+
this.$element = null
|
|
222
|
+
this.options = null
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
, enable: function () {
|
|
227
|
+
this.enabled = true
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
, disable: function () {
|
|
231
|
+
this.enabled = false
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
, toggleEnabled: function () {
|
|
235
|
+
this.enabled = !this.enabled
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
, toggle: function () {
|
|
239
|
+
this[this.tip().hasClass('in') ? 'hide' : 'show']()
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
, destroy: function () {
|
|
243
|
+
this.hide().$element.off('.' + this.type).removeData(this.type)
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
/* TOOLTIP PLUGIN DEFINITION
|
|
250
|
+
* ========================= */
|
|
251
|
+
|
|
252
|
+
$.fn.tooltip = function ( option ) {
|
|
253
|
+
return this.each(function () {
|
|
254
|
+
var $this = $(this)
|
|
255
|
+
, data = $this.data('tooltip')
|
|
256
|
+
, options = typeof option == 'object' && option
|
|
257
|
+
if (!data) $this.data('tooltip', (data = new Tooltip(this, options)))
|
|
258
|
+
if (typeof option == 'string') data[option]()
|
|
259
|
+
})
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
$.fn.tooltip.Constructor = Tooltip
|
|
263
|
+
|
|
264
|
+
$.fn.tooltip.defaults = {
|
|
265
|
+
animation: true
|
|
266
|
+
, placement: 'top'
|
|
267
|
+
, selector: false
|
|
268
|
+
, template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
|
|
269
|
+
, trigger: 'hover'
|
|
270
|
+
, title: ''
|
|
271
|
+
, delay: 0
|
|
272
|
+
, html: true
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
}(window.jQuery);
|