mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 07:03:24 +01:00
More fixes ...
This commit is contained in:
parent
695b8d92e3
commit
5710d77bd5
@ -86,7 +86,7 @@ mindplot.Designer = new Class({
|
||||
$(document).bind('mousewheel', function (event) {
|
||||
// Change mousewheel handling so we let the default
|
||||
//event happen if we are outside the container.
|
||||
var coords = screenManager.getContainer().getCoordinates();
|
||||
var coords = screenManager.getContainer()[0].getCoordinates();
|
||||
var isOutsideContainer = event.client.y < coords.top ||
|
||||
event.client.y > coords.bottom ||
|
||||
event.client.x < coords.left ||
|
||||
|
@ -24,7 +24,7 @@ mindplot.widget.FontFamilyPanel = new Class({
|
||||
|
||||
buildPanel: function() {
|
||||
|
||||
var content = new Element("div", {'class':'toolbarPanel','id':'fontFamilyPanel'});
|
||||
var content = $("<div class='toolbarPanel' id='fontFamilyPanel'></div>");
|
||||
content.innerHTML = '' +
|
||||
'<div id="times" model="Times" class="toolbarPanelLink" style="font-family:times;">Times</div>' +
|
||||
'<div id="arial" model="Arial" style="font-family:arial;">Arial</div>' +
|
||||
|
@ -26,7 +26,7 @@ mindplot.widget.Menu = new Class({
|
||||
var widgetsBaseUrl = baseUrl + "css/widget";
|
||||
|
||||
// Stop event propagation ...
|
||||
$('#'+this._containerId).addEvent('click', function (event) {
|
||||
$('#'+this._containerId).bind('click', function (event) {
|
||||
event.stopPropagation();
|
||||
return false;
|
||||
});
|
||||
@ -416,7 +416,7 @@ mindplot.widget.Menu = new Class({
|
||||
var keyboardShortcut = $('#keyboardShortcuts');
|
||||
if (keyboardShortcut) {
|
||||
|
||||
keyboardShortcut.addEvent('click', function (event) {
|
||||
keyboardShortcut.bind('click', function (event) {
|
||||
var reqDialog = new MooDialog.Request('c/keyboard', null,
|
||||
{'class': 'modalDialog keyboardModalDialog',
|
||||
closeButton: true,
|
||||
@ -441,7 +441,7 @@ mindplot.widget.Menu = new Class({
|
||||
var left = (screen.width / 2) - (width / 2);
|
||||
var top = (screen.height / 2) - (height / 2);
|
||||
|
||||
videoElem.addEvent('click', function (event) {
|
||||
videoElem.bind('click', function (event) {
|
||||
window.open("https://www.youtube.com/tv?vq=medium#/watch?v=rKxZwNKs9cE", "_blank", 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width=' + width + ', height=' + height + ', top=' + top + ', left=' + left);
|
||||
event.preventDefault();
|
||||
});
|
||||
|
@ -50,7 +50,7 @@ mindplot.widget.ToolbarItem = new Class({
|
||||
},
|
||||
|
||||
getButtonElem : function() {
|
||||
var elem = document.id(this._buttonId);
|
||||
var elem = $('#'+this._buttonId);
|
||||
$assert(elem, "Could not find element for " + this._buttonId);
|
||||
return elem;
|
||||
}.protect(),
|
||||
@ -78,7 +78,7 @@ mindplot.widget.ToolbarItem = new Class({
|
||||
disable : function() {
|
||||
var elem = this.getButtonElem();
|
||||
if (this._enable) {
|
||||
elem.removeEvent('click', this._fn);
|
||||
elem.unbind('click', this._fn);
|
||||
elem.removeClass('buttonOn');
|
||||
elem.addClass('buttonOff');
|
||||
this._enable = false;
|
||||
@ -88,7 +88,7 @@ mindplot.widget.ToolbarItem = new Class({
|
||||
enable : function() {
|
||||
var elem = this.getButtonElem();
|
||||
if (!this._enable) {
|
||||
elem.addEvent('click', this._fn);
|
||||
elem.bind('click', this._fn);
|
||||
elem.removeClass('buttonOff');
|
||||
elem.addClass('buttonOn');
|
||||
this._enable = true;
|
||||
|
@ -39,7 +39,7 @@ mindplot.widget.ToolbarPaneItem = new Class({
|
||||
_init:function () {
|
||||
// Load the context of the panel ...
|
||||
var panelElem = this.buildPanel();
|
||||
panelElem.setStyle('cursor', 'default');
|
||||
panelElem.css('cursor', 'default');
|
||||
var buttonElem = this.getButtonElem();
|
||||
|
||||
var item = this;
|
||||
@ -65,11 +65,11 @@ mindplot.widget.ToolbarPaneItem = new Class({
|
||||
offset: {x:-4,y:0}
|
||||
});
|
||||
|
||||
this._tip.addEvent('hide', function() {
|
||||
this._tip.bind('hide', function() {
|
||||
this._visible = false
|
||||
}.bind(this));
|
||||
|
||||
this._tip.addEvent('show', function() {
|
||||
this._tip.bind('show', function() {
|
||||
this._visible = true
|
||||
}.bind(this));
|
||||
|
||||
@ -108,7 +108,7 @@ mindplot.widget.ToolbarPaneItem = new Class({
|
||||
this.hide();
|
||||
var elem = this.getButtonElem();
|
||||
if (this._enable) {
|
||||
elem.removeEvent('click', this._fn);
|
||||
elem.unbind('click', this._fn);
|
||||
elem.removeClass('buttonExtOn');
|
||||
|
||||
// Todo: Hack...
|
||||
@ -122,7 +122,7 @@ mindplot.widget.ToolbarPaneItem = new Class({
|
||||
enable : function() {
|
||||
var elem = this.getButtonElem();
|
||||
if (!this._enable) {
|
||||
elem.addEvent('click', this._fn);
|
||||
elem.bind('click', this._fn);
|
||||
elem.removeClass('buttonExtOff');
|
||||
elem.addClass('buttonExtOn');
|
||||
this._enable = true;
|
||||
|
Loading…
Reference in New Issue
Block a user