58 lines
1.7 KiB
JavaScript
Raw Normal View History

2011-10-07 00:21:49 -03:00
/*
2012-10-04 20:48:01 -03:00
* Copyright [2012] [wisemapping]
2011-10-07 00:21:49 -03:00
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2014-04-20 23:57:39 -03:00
//FIXME: ver que onda tip en los eventos
2011-10-07 00:21:49 -03:00
mindplot.widget.FloatingTip = new Class({
2014-03-16 22:00:04 -03:00
Implements: [Options, mindplot.Events],
2014-03-05 00:14:28 -03:00
options: {
2014-04-20 23:57:39 -03:00
animation: true,
2014-03-05 00:14:28 -03:00
html: false,
2014-04-20 23:57:39 -03:00
placement: 'right',
selector: false,
trigger: 'hover',
title: '',
content: '',
delay: 0,
container: false
2011-10-07 00:21:49 -03:00
},
2014-03-05 00:14:28 -03:00
initialize: function (element, options) {
2011-10-07 00:21:49 -03:00
this.setOptions(options);
2014-04-20 23:57:39 -03:00
this.element = element;
element.popover(this.options);
2011-10-07 00:21:49 -03:00
},
2014-03-05 00:14:28 -03:00
show: function (element) {
2014-04-20 23:57:39 -03:00
if (element) {
console.error('element is not necessary');
2011-10-07 00:21:49 -03:00
}
2014-04-20 23:57:39 -03:00
this.element.popover('show');
this.fireEvent('show', [this, this.element]);
2011-10-07 00:21:49 -03:00
return this;
},
2014-03-05 00:14:28 -03:00
hide: function (element) {
2014-04-21 00:34:01 -03:00
if (element) {
console.error('element is not necessary');
}
2014-04-20 23:57:39 -03:00
this.element.popover('hide');
this.fireEvent('hide', [this, element]);
2011-10-07 00:21:49 -03:00
return this;
}
});