zendesk_api 0.1.11 → 0.2.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.
- data/.gitignore +3 -0
- data/.travis.yml +1 -3
- data/Gemfile +24 -0
- data/Gemfile.lock +75 -10
- data/Procfile +1 -0
- data/Rakefile +10 -3
- data/Readme.md +65 -0
- data/bin/zendesk +26 -0
- data/config.ru +6 -0
- data/config/mongoid.yml +81 -0
- data/lib/zendesk_api/actions.rb +2 -2
- data/lib/zendesk_api/collection.rb +15 -4
- data/lib/zendesk_api/console/base.rb +12 -0
- data/lib/zendesk_api/console/console.rb +144 -0
- data/lib/zendesk_api/console/extensions.rb +183 -0
- data/lib/zendesk_api/console/options.rb +41 -0
- data/lib/zendesk_api/resource.rb +12 -1
- data/lib/zendesk_api/resources.rb +28 -8
- data/lib/zendesk_api/server/base.rb +119 -0
- data/lib/zendesk_api/server/docs/account_settings.md +145 -0
- data/lib/zendesk_api/server/docs/activity_stream.md +121 -0
- data/lib/zendesk_api/server/docs/attachments.md +73 -0
- data/lib/zendesk_api/server/docs/autocomplete.md +29 -0
- data/lib/zendesk_api/server/docs/categories.md +193 -0
- data/lib/zendesk_api/server/docs/custom_roles.md +88 -0
- data/lib/zendesk_api/server/docs/forum_subscriptions.md +139 -0
- data/lib/zendesk_api/server/docs/forums.md +229 -0
- data/lib/zendesk_api/server/docs/group_memberships.md +229 -0
- data/lib/zendesk_api/server/docs/groups.md +212 -0
- data/lib/zendesk_api/server/docs/introduction.md +159 -0
- data/lib/zendesk_api/server/docs/job_statuses.md +86 -0
- data/lib/zendesk_api/server/docs/locales.md +124 -0
- data/lib/zendesk_api/server/docs/macros.md +287 -0
- data/lib/zendesk_api/server/docs/organizations.md +253 -0
- data/lib/zendesk_api/server/docs/problems.md +117 -0
- data/lib/zendesk_api/server/docs/requests.md +256 -0
- data/lib/zendesk_api/server/docs/satisfaction_ratings.md +136 -0
- data/lib/zendesk_api/server/docs/search.md +106 -0
- data/lib/zendesk_api/server/docs/sharing_agreements.md +57 -0
- data/lib/zendesk_api/server/docs/side_loading.md +125 -0
- data/lib/zendesk_api/server/docs/suspended_tickets.md +182 -0
- data/lib/zendesk_api/server/docs/tags.md +36 -0
- data/lib/zendesk_api/server/docs/ticket_audits.md +657 -0
- data/lib/zendesk_api/server/docs/ticket_export.md +121 -0
- data/lib/zendesk_api/server/docs/ticket_fields.md +277 -0
- data/lib/zendesk_api/server/docs/ticket_import.md +65 -0
- data/lib/zendesk_api/server/docs/ticket_metrics.md +125 -0
- data/lib/zendesk_api/server/docs/tickets.md +622 -0
- data/lib/zendesk_api/server/docs/topic_comments.md +221 -0
- data/lib/zendesk_api/server/docs/topic_subscriptions.md +140 -0
- data/lib/zendesk_api/server/docs/topic_votes.md +154 -0
- data/lib/zendesk_api/server/docs/topics.md +335 -0
- data/lib/zendesk_api/server/docs/triggers.md +199 -0
- data/lib/zendesk_api/server/docs/user_identities.md +279 -0
- data/lib/zendesk_api/server/docs/users.md +400 -0
- data/lib/zendesk_api/server/docs/views.md +505 -0
- data/lib/zendesk_api/server/helper.rb +104 -0
- data/lib/zendesk_api/server/html_renderer.rb +98 -0
- data/lib/zendesk_api/server/models/user_request.rb +16 -0
- data/lib/zendesk_api/server/models/zlib_json.rb +13 -0
- data/lib/zendesk_api/server/public/config.rb +26 -0
- data/lib/zendesk_api/server/public/favicon.ico +0 -0
- data/lib/zendesk_api/server/public/images/glyphicons-halflings-white.png +0 -0
- data/lib/zendesk_api/server/public/images/glyphicons-halflings.png +0 -0
- data/lib/zendesk_api/server/public/images/spinner.gif +0 -0
- data/lib/zendesk_api/server/public/images/zendesk_developers_bg.png +0 -0
- data/lib/zendesk_api/server/public/images/zendesk_developers_header.png +0 -0
- data/lib/zendesk_api/server/public/javascripts/application.js +186 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-alert.js +90 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-button.js +96 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-carousel.js +169 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-collapse.js +157 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-dropdown.js +100 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-modal.js +218 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-popover.js +98 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-scrollspy.js +151 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-tab.js +135 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-tooltip.js +275 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-transition.js +61 -0
- data/lib/zendesk_api/server/public/javascripts/bootstrap-typeahead.js +285 -0
- data/lib/zendesk_api/server/public/sass/screen.scss +102 -0
- data/lib/zendesk_api/server/public/sass/styles.scss +5 -0
- data/lib/zendesk_api/server/public/stylesheets/developer.screen.css +836 -0
- data/lib/zendesk_api/server/public/stylesheets/screen.css +129 -0
- data/lib/zendesk_api/server/public/stylesheets/styles.css +6208 -0
- data/lib/zendesk_api/server/templates/footer.haml +13 -0
- data/lib/zendesk_api/server/templates/header.haml +20 -0
- data/lib/zendesk_api/server/templates/index.haml +68 -0
- data/lib/zendesk_api/server/templates/layout.haml +44 -0
- data/lib/zendesk_api/server/templates/param.haml +4 -0
- data/lib/zendesk_api/server/templates/search.haml +23 -0
- data/lib/zendesk_api/server/templates/sidebar.haml +7 -0
- data/lib/zendesk_api/version.rb +1 -1
- data/spec/{association_spec.rb → core/association_spec.rb} +1 -1
- data/spec/{client_spec.rb → core/client_spec.rb} +1 -1
- data/spec/{collection_spec.rb → core/collection_spec.rb} +1 -1
- data/spec/{configuration_spec.rb → core/configuration_spec.rb} +1 -1
- data/spec/{create_resource_spec.rb → core/create_resource_spec.rb} +1 -1
- data/spec/{data_resource_spec.rb → core/data_resource_spec.rb} +1 -1
- data/spec/{inflection_spec.rb → core/inflection_spec.rb} +1 -1
- data/spec/{lru_cache_spec.rb → core/lru_cache_spec.rb} +1 -1
- data/spec/{middleware → core/middleware}/request/etag_cache_spec.rb +1 -1
- data/spec/{middleware → core/middleware}/request/retry_spec.rb +1 -1
- data/spec/{middleware → core/middleware}/request/test.jpg +0 -0
- data/spec/{middleware → core/middleware}/request/upload_spec.rb +1 -1
- data/spec/{middleware → core/middleware}/response/callback_spec.rb +1 -1
- data/spec/{middleware → core/middleware}/response/deflate_spec.rb +1 -1
- data/spec/{middleware → core/middleware}/response/gzip_spec.rb +1 -1
- data/spec/{middleware → core/middleware}/response/parse_iso_dates_spec.rb +1 -1
- data/spec/{read_resource_spec.rb → core/read_resource_spec.rb} +1 -1
- data/spec/{rescue_spec.rb → core/rescue_spec.rb} +1 -1
- data/spec/{resource_spec.rb → core/resource_spec.rb} +1 -1
- data/spec/{search_spec.rb → core/search_spec.rb} +1 -1
- data/spec/{spec_helper.rb → core/spec_helper.rb} +5 -5
- data/spec/{trackie_spec.rb → core/trackie_spec.rb} +1 -1
- data/{live → spec/live}/Readme.md +0 -0
- data/{live → spec/live}/activity_spec.rb +1 -1
- data/{live → spec/live}/audit_spec.rb +1 -1
- data/{live → spec/live}/bookmark_spec.rb +1 -1
- data/{live → spec/live}/category_spec.rb +1 -1
- data/{live → spec/live}/collection_spec.rb +1 -1
- data/{live → spec/live}/crm_spec.rb +1 -1
- data/{live → spec/live}/custom_role_spec.rb +1 -1
- data/{live → spec/live}/forum_spec.rb +1 -1
- data/{live → spec/live}/forum_subscription_spec.rb +1 -1
- data/{live → spec/live}/group_membership_spec.rb +1 -1
- data/{live → spec/live}/group_spec.rb +1 -1
- data/{live → spec/live}/identity_spec.rb +1 -1
- data/{live → spec/live}/locale_spec.rb +1 -1
- data/{live → spec/live}/macro_spec.rb +1 -1
- data/{live → spec/live}/mobile_device_spec.rb +1 -1
- data/{live → spec/live}/organization_spec.rb +1 -1
- data/{live → spec/live}/request_spec.rb +1 -1
- data/{live → spec/live}/satisfaction_rating_spec.rb +1 -1
- data/{live → spec/live}/setting_spec.rb +1 -1
- data/{live → spec/live}/suspended_ticket_spec.rb +1 -1
- data/{live → spec/live}/ticket_field_spec.rb +1 -1
- data/{live → spec/live}/ticket_metrics_spec.rb +1 -1
- data/{live → spec/live}/ticket_spec.rb +1 -1
- data/spec/live/topic_comment_spec.rb +24 -0
- data/{live → spec/live}/topic_spec.rb +1 -1
- data/{live → spec/live}/topic_subscription_spec.rb +1 -1
- data/{live → spec/live}/topic_vote_spec.rb +1 -1
- data/{live → spec/live}/upload_spec.rb +1 -1
- data/{live → spec/live}/user_spec.rb +1 -1
- data/{live → spec/live}/view_spec.rb +1 -1
- data/spec/macros/resource_macros.rb +1 -1
- data/spec/server/app_spec.rb +140 -0
- data/spec/server/helper_spec.rb +97 -0
- data/spec/server/html_renderer_spec.rb +130 -0
- data/spec/server/spec_helper.rb +43 -0
- metadata +198 -77
- data/live/topic_comment_spec.rb +0 -13
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
/* ========================================================
|
|
2
|
+
* bootstrap-tab.js v2.0.4
|
|
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.0.4
|
|
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 != 'manual') {
|
|
48
|
+
eventIn = this.options.trigger == 'hover' ? 'mouseenter' : 'focus'
|
|
49
|
+
eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur'
|
|
50
|
+
this.$element.on(eventIn, this.options.selector, $.proxy(this.enter, this))
|
|
51
|
+
this.$element.on(eventOut, this.options.selector, $.proxy(this.leave, this))
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
this.options.selector ?
|
|
55
|
+
(this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
|
|
56
|
+
this.fixTitle()
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
, getOptions: function (options) {
|
|
60
|
+
options = $.extend({}, $.fn[this.type].defaults, options, this.$element.data())
|
|
61
|
+
|
|
62
|
+
if (options.delay && typeof options.delay == 'number') {
|
|
63
|
+
options.delay = {
|
|
64
|
+
show: options.delay
|
|
65
|
+
, hide: options.delay
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return options
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
, enter: function (e) {
|
|
73
|
+
var self = $(e.currentTarget)[this.type](this._options).data(this.type)
|
|
74
|
+
|
|
75
|
+
if (!self.options.delay || !self.options.delay.show) return self.show()
|
|
76
|
+
|
|
77
|
+
clearTimeout(this.timeout)
|
|
78
|
+
self.hoverState = 'in'
|
|
79
|
+
this.timeout = setTimeout(function() {
|
|
80
|
+
if (self.hoverState == 'in') self.show()
|
|
81
|
+
}, self.options.delay.show)
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
, leave: function (e) {
|
|
85
|
+
var self = $(e.currentTarget)[this.type](this._options).data(this.type)
|
|
86
|
+
|
|
87
|
+
if (this.timeout) clearTimeout(this.timeout)
|
|
88
|
+
if (!self.options.delay || !self.options.delay.hide) return self.hide()
|
|
89
|
+
|
|
90
|
+
self.hoverState = 'out'
|
|
91
|
+
this.timeout = setTimeout(function() {
|
|
92
|
+
if (self.hoverState == 'out') self.hide()
|
|
93
|
+
}, self.options.delay.hide)
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
, show: function () {
|
|
97
|
+
var $tip
|
|
98
|
+
, inside
|
|
99
|
+
, pos
|
|
100
|
+
, actualWidth
|
|
101
|
+
, actualHeight
|
|
102
|
+
, placement
|
|
103
|
+
, tp
|
|
104
|
+
|
|
105
|
+
if (this.hasContent() && this.enabled) {
|
|
106
|
+
$tip = this.tip()
|
|
107
|
+
this.setContent()
|
|
108
|
+
|
|
109
|
+
if (this.options.animation) {
|
|
110
|
+
$tip.addClass('fade')
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
placement = typeof this.options.placement == 'function' ?
|
|
114
|
+
this.options.placement.call(this, $tip[0], this.$element[0]) :
|
|
115
|
+
this.options.placement
|
|
116
|
+
|
|
117
|
+
inside = /in/.test(placement)
|
|
118
|
+
|
|
119
|
+
$tip
|
|
120
|
+
.remove()
|
|
121
|
+
.css({ top: 0, left: 0, display: 'block' })
|
|
122
|
+
.appendTo(inside ? this.$element : document.body)
|
|
123
|
+
|
|
124
|
+
pos = this.getPosition(inside)
|
|
125
|
+
|
|
126
|
+
actualWidth = $tip[0].offsetWidth
|
|
127
|
+
actualHeight = $tip[0].offsetHeight
|
|
128
|
+
|
|
129
|
+
switch (inside ? placement.split(' ')[1] : placement) {
|
|
130
|
+
case 'bottom':
|
|
131
|
+
tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}
|
|
132
|
+
break
|
|
133
|
+
case 'top':
|
|
134
|
+
tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}
|
|
135
|
+
break
|
|
136
|
+
case 'left':
|
|
137
|
+
tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}
|
|
138
|
+
break
|
|
139
|
+
case 'right':
|
|
140
|
+
tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}
|
|
141
|
+
break
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
$tip
|
|
145
|
+
.css(tp)
|
|
146
|
+
.addClass(placement)
|
|
147
|
+
.addClass('in')
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
, isHTML: function(text) {
|
|
152
|
+
// html string detection logic adapted from jQuery
|
|
153
|
+
return typeof text != 'string'
|
|
154
|
+
|| ( text.charAt(0) === "<"
|
|
155
|
+
&& text.charAt( text.length - 1 ) === ">"
|
|
156
|
+
&& text.length >= 3
|
|
157
|
+
) || /^(?:[^<]*<[\w\W]+>[^>]*$)/.exec(text)
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
, setContent: function () {
|
|
161
|
+
var $tip = this.tip()
|
|
162
|
+
, title = this.getTitle()
|
|
163
|
+
|
|
164
|
+
$tip.find('.tooltip-inner')[this.isHTML(title) ? 'html' : 'text'](title)
|
|
165
|
+
$tip.removeClass('fade in top bottom left right')
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
, hide: function () {
|
|
169
|
+
var that = this
|
|
170
|
+
, $tip = this.tip()
|
|
171
|
+
|
|
172
|
+
$tip.removeClass('in')
|
|
173
|
+
|
|
174
|
+
function removeWithAnimation() {
|
|
175
|
+
var timeout = setTimeout(function () {
|
|
176
|
+
$tip.off($.support.transition.end).remove()
|
|
177
|
+
}, 500)
|
|
178
|
+
|
|
179
|
+
$tip.one($.support.transition.end, function () {
|
|
180
|
+
clearTimeout(timeout)
|
|
181
|
+
$tip.remove()
|
|
182
|
+
})
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
$.support.transition && this.$tip.hasClass('fade') ?
|
|
186
|
+
removeWithAnimation() :
|
|
187
|
+
$tip.remove()
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
, fixTitle: function () {
|
|
191
|
+
var $e = this.$element
|
|
192
|
+
if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
|
|
193
|
+
$e.attr('data-original-title', $e.attr('title') || '').removeAttr('title')
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
, hasContent: function () {
|
|
198
|
+
return this.getTitle()
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
, getPosition: function (inside) {
|
|
202
|
+
return $.extend({}, (inside ? {top: 0, left: 0} : this.$element.offset()), {
|
|
203
|
+
width: this.$element[0].offsetWidth
|
|
204
|
+
, height: this.$element[0].offsetHeight
|
|
205
|
+
})
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
, getTitle: function () {
|
|
209
|
+
var title
|
|
210
|
+
, $e = this.$element
|
|
211
|
+
, o = this.options
|
|
212
|
+
|
|
213
|
+
title = $e.attr('data-original-title')
|
|
214
|
+
|| (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
|
|
215
|
+
|
|
216
|
+
return title
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
, tip: function () {
|
|
220
|
+
return this.$tip = this.$tip || $(this.options.template)
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
, validate: function () {
|
|
224
|
+
if (!this.$element[0].parentNode) {
|
|
225
|
+
this.hide()
|
|
226
|
+
this.$element = null
|
|
227
|
+
this.options = null
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
, enable: function () {
|
|
232
|
+
this.enabled = true
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
, disable: function () {
|
|
236
|
+
this.enabled = false
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
, toggleEnabled: function () {
|
|
240
|
+
this.enabled = !this.enabled
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
, toggle: function () {
|
|
244
|
+
this[this.tip().hasClass('in') ? 'hide' : 'show']()
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
/* TOOLTIP PLUGIN DEFINITION
|
|
251
|
+
* ========================= */
|
|
252
|
+
|
|
253
|
+
$.fn.tooltip = function ( option ) {
|
|
254
|
+
return this.each(function () {
|
|
255
|
+
var $this = $(this)
|
|
256
|
+
, data = $this.data('tooltip')
|
|
257
|
+
, options = typeof option == 'object' && option
|
|
258
|
+
if (!data) $this.data('tooltip', (data = new Tooltip(this, options)))
|
|
259
|
+
if (typeof option == 'string') data[option]()
|
|
260
|
+
})
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
$.fn.tooltip.Constructor = Tooltip
|
|
264
|
+
|
|
265
|
+
$.fn.tooltip.defaults = {
|
|
266
|
+
animation: true
|
|
267
|
+
, placement: 'top'
|
|
268
|
+
, selector: false
|
|
269
|
+
, template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
|
|
270
|
+
, trigger: 'hover'
|
|
271
|
+
, title: ''
|
|
272
|
+
, delay: 0
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
}(window.jQuery);
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/* ===================================================
|
|
2
|
+
* bootstrap-transition.js v2.0.4
|
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#transitions
|
|
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
|
+
$(function () {
|
|
24
|
+
|
|
25
|
+
"use strict"; // jshint ;_;
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
|
|
29
|
+
* ======================================================= */
|
|
30
|
+
|
|
31
|
+
$.support.transition = (function () {
|
|
32
|
+
|
|
33
|
+
var transitionEnd = (function () {
|
|
34
|
+
|
|
35
|
+
var el = document.createElement('bootstrap')
|
|
36
|
+
, transEndEventNames = {
|
|
37
|
+
'WebkitTransition' : 'webkitTransitionEnd'
|
|
38
|
+
, 'MozTransition' : 'transitionend'
|
|
39
|
+
, 'OTransition' : 'oTransitionEnd'
|
|
40
|
+
, 'msTransition' : 'MSTransitionEnd'
|
|
41
|
+
, 'transition' : 'transitionend'
|
|
42
|
+
}
|
|
43
|
+
, name
|
|
44
|
+
|
|
45
|
+
for (name in transEndEventNames){
|
|
46
|
+
if (el.style[name] !== undefined) {
|
|
47
|
+
return transEndEventNames[name]
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
}())
|
|
52
|
+
|
|
53
|
+
return transitionEnd && {
|
|
54
|
+
end: transitionEnd
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
})()
|
|
58
|
+
|
|
59
|
+
})
|
|
60
|
+
|
|
61
|
+
}(window.jQuery);
|