fixing some old refs

This commit is contained in:
Ezequiel Bergamaschi 2014-04-21 00:34:01 -03:00
parent eef8865774
commit 258abc232f
3 changed files with 5 additions and 2 deletions

View File

@ -66,7 +66,7 @@ mindplot.widget.ColorPalettePanel = new Class({
var model = this.getModel();
_.each(colorCells, function (elem) {
$(elem).on('click', function () {
var color = elem.css("background-color");
var color = $(elem).css("background-color");
model.setValue(color);
this.hide();
}.bind(this));

View File

@ -47,6 +47,9 @@ mindplot.widget.FloatingTip = new Class({
},
hide: function (element) {
if (element) {
console.error('element is not necessary');
}
this.element.popover('hide');
this.fireEvent('hide', [this, element]);
return this;

View File

@ -59,7 +59,7 @@ mindplot.widget.IconPanel = new Class({
var panel = this;
var model = this.getModel();
img.on('click', function (event) {
model.setValue(this.id);
model.setValue(this.attr('id'));
panel.hide();
}.bind(img));