Commit d6b420e1 authored by Joshua Gould's avatar Joshua Gould

scroll lens

parent b2792ab4
This source diff could not be displayed because it is too large. You can view the blob instead.
morpheus.FormBuilder = function(options) { morpheus.FormBuilder = function (options) {
var that = this; var that = this;
this.prefix = _.uniqueId('form'); this.prefix = _.uniqueId('form');
this.$form = $('<form></form>'); this.$form = $('<form></form>');
...@@ -12,12 +12,12 @@ morpheus.FormBuilder = function(options) { ...@@ -12,12 +12,12 @@ morpheus.FormBuilder = function(options) {
this.labelClass = 'control-label'; this.labelClass = 'control-label';
this.titleClass = 'control-label'; this.titleClass = 'control-label';
} }
this.$form.on('submit', function(e) { this.$form.on('submit', function (e) {
e.preventDefault(); e.preventDefault();
}); });
this.$form.on( this.$form.on(
'dragover', 'dragover',
function(e) { function (e) {
var node = $(e.originalEvent.srcElement).parent().parent() var node = $(e.originalEvent.srcElement).parent().parent()
.prev(); .prev();
if (node.is('select') && node.hasClass('file-input')) { if (node.is('select') && node.hasClass('file-input')) {
...@@ -28,7 +28,7 @@ morpheus.FormBuilder = function(options) { ...@@ -28,7 +28,7 @@ morpheus.FormBuilder = function(options) {
} }
}).on( }).on(
'dragenter', 'dragenter',
function(e) { function (e) {
var node = $(e.originalEvent.srcElement).parent().parent() var node = $(e.originalEvent.srcElement).parent().parent()
.prev(); .prev();
if (node.is('select') && node.hasClass('file-input')) { if (node.is('select') && node.hasClass('file-input')) {
...@@ -37,14 +37,14 @@ morpheus.FormBuilder = function(options) { ...@@ -37,14 +37,14 @@ morpheus.FormBuilder = function(options) {
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
} }
}).on('dragleave', function(e) { }).on('dragleave', function (e) {
var node = $(e.originalEvent.srcElement).parent().parent().prev(); var node = $(e.originalEvent.srcElement).parent().parent().prev();
if (node.is('select') && node.hasClass('file-input')) { if (node.is('select') && node.hasClass('file-input')) {
$(e.originalEvent.srcElement).parent().css('border', ''); $(e.originalEvent.srcElement).parent().css('border', '');
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
} }
}).on('drop', function(e) { }).on('drop', function (e) {
var node = $(e.originalEvent.srcElement).parent().parent().prev(); var node = $(e.originalEvent.srcElement).parent().parent().prev();
if (node.is('select') && node.hasClass('file-input')) { if (node.is('select') && node.hasClass('file-input')) {
var isMultiple = node.data('multiple'); var isMultiple = node.data('multiple');
...@@ -58,17 +58,17 @@ morpheus.FormBuilder = function(options) { ...@@ -58,17 +58,17 @@ morpheus.FormBuilder = function(options) {
var files = e.originalEvent.dataTransfer.files; var files = e.originalEvent.dataTransfer.files;
that.setValue(name, isMultiple ? files : files[0]); that.setValue(name, isMultiple ? files : files[0]);
that.trigger('change', { that.trigger('change', {
name : name, name: name,
value : files[0] value: files[0]
}); });
} else { } else {
var url = e.originalEvent.dataTransfer.getData('URL'); var url = e.originalEvent.dataTransfer.getData('URL');
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
that.setValue(name, url); that.setValue(name, isMultiple ? [url] : url);
that.trigger('change', { that.trigger('change', {
name : name, name: name,
value : url value: url
}); });
} }
} }
...@@ -78,7 +78,7 @@ morpheus.FormBuilder = function(options) { ...@@ -78,7 +78,7 @@ morpheus.FormBuilder = function(options) {
// this.fieldColumnDef = '8'; // this.fieldColumnDef = '8';
}; };
morpheus.FormBuilder.showProgressBar = function(options) { morpheus.FormBuilder.showProgressBar = function (options) {
var content = []; var content = [];
content.push('<div class="container-fluid">'); content.push('<div class="container-fluid">');
content.push('<div class="row">'); content.push('<div class="row">');
...@@ -100,16 +100,16 @@ morpheus.FormBuilder.showProgressBar = function(options) { ...@@ -100,16 +100,16 @@ morpheus.FormBuilder.showProgressBar = function(options) {
} }
content.push('</div>'); content.push('</div>');
var $content = $(content.join('')); var $content = $(content.join(''));
$content.find('[name=stop]').on('click', function(e) { $content.find('[name=stop]').on('click', function (e) {
options.stop(); options.stop();
e.preventDefault(); e.preventDefault();
}); });
return morpheus.FormBuilder.showInDraggableDiv({ return morpheus.FormBuilder.showInDraggableDiv({
title : options.title, title: options.title,
$content : $content $content: $content
}); });
}; };
morpheus.FormBuilder.showInDraggableDiv = function(options) { morpheus.FormBuilder.showInDraggableDiv = function (options) {
var width = options.width || '300px'; var width = options.width || '300px';
var html = []; var html = [];
html html
...@@ -125,7 +125,7 @@ morpheus.FormBuilder.showInDraggableDiv = function(options) { ...@@ -125,7 +125,7 @@ morpheus.FormBuilder.showInDraggableDiv = function(options) {
var $div = $(html.join('')); var $div = $(html.join(''));
var $content = $div.find('[name=content]'); var $content = $div.find('[name=content]');
$div.find('[name=header]').on('dblclick', function() { $div.find('[name=header]').on('dblclick', function () {
if ($content.css('display') === 'none') { if ($content.css('display') === 'none') {
$content.css('display', ''); $content.css('display', '');
} else { } else {
...@@ -136,25 +136,25 @@ morpheus.FormBuilder.showInDraggableDiv = function(options) { ...@@ -136,25 +136,25 @@ morpheus.FormBuilder.showInDraggableDiv = function(options) {
options.$content.appendTo($content); options.$content.appendTo($content);
$div.css('left', ($(window).width() / 2) - $content.outerWidth() / 2); $div.css('left', ($(window).width() / 2) - $content.outerWidth() / 2);
$div.draggable({ $div.draggable({
handle : '[name=header]', handle: '[name=header]',
containment : 'document' containment: 'document'
}); });
// $div.resizable(); // $div.resizable();
$div.appendTo($(document.body)); $div.appendTo($(document.body));
return $div; return $div;
}; };
morpheus.FormBuilder.promptForDataset = function(cb) { morpheus.FormBuilder.promptForDataset = function (cb) {
var formBuilder = new morpheus.FormBuilder(); var formBuilder = new morpheus.FormBuilder();
formBuilder.append({ formBuilder.append({
name : 'file', name: 'file',
value : '', value: '',
type : 'file', type: 'file',
required : true, required: true,
help : morpheus.DatasetUtil.DATASET_FILE_FORMATS help: morpheus.DatasetUtil.DATASET_FILE_FORMATS
}); });
var $modal; var $modal;
formBuilder.on('change', function(e) { formBuilder.on('change', function (e) {
var value = e.value; var value = e.value;
if (value !== '' && value != null) { if (value !== '' && value != null) {
$modal.modal('hide'); $modal.modal('hide');
...@@ -163,24 +163,24 @@ morpheus.FormBuilder.promptForDataset = function(cb) { ...@@ -163,24 +163,24 @@ morpheus.FormBuilder.promptForDataset = function(cb) {
} }
}); });
$modal = morpheus.FormBuilder.showInModal({ $modal = morpheus.FormBuilder.showInModal({
title : 'Dataset', title: 'Dataset',
html : formBuilder.$form, html: formBuilder.$form,
close : false close: false
}); });
}; };
morpheus.FormBuilder.showInModal = function(options) { morpheus.FormBuilder.showInModal = function (options) {
var $div = morpheus.FormBuilder var $div = morpheus.FormBuilder
._showInModal({ ._showInModal({
z : options.z, z: options.z,
title : options.title, title: options.title,
html : options.html, html: options.html,
footer : options.close ? ('<button type="button" class="btn btn-default" data-dismiss="modal">' footer: options.close ? ('<button type="button" class="btn btn-default" data-dismiss="modal">'
+ options.close + '</button>') + options.close + '</button>')
: null, : null,
onClose : options.callback, onClose: options.callback,
backdrop : options.backdrop, backdrop: options.backdrop,
size : options.size size: options.size
}); });
return $div; return $div;
// if (options.draggable) { // if (options.draggable) {
...@@ -190,9 +190,9 @@ morpheus.FormBuilder.showInModal = function(options) { ...@@ -190,9 +190,9 @@ morpheus.FormBuilder.showInModal = function(options) {
// } // }
}; };
morpheus.FormBuilder.showOkCancel = function(options) { morpheus.FormBuilder.showOkCancel = function (options) {
options = $.extend({}, { options = $.extend({}, {
ok : true ok: true
}, options); }, options);
var footer = []; var footer = [];
if (options.ok) { if (options.ok) {
...@@ -206,18 +206,18 @@ morpheus.FormBuilder.showOkCancel = function(options) { ...@@ -206,18 +206,18 @@ morpheus.FormBuilder.showOkCancel = function(options) {
footer footer
.push('<button name="cancel" type="button" data-dismiss="modal" class="btn btn-default">Cancel</button>'); .push('<button name="cancel" type="button" data-dismiss="modal" class="btn btn-default">Cancel</button>');
var $div = morpheus.FormBuilder._showInModal({ var $div = morpheus.FormBuilder._showInModal({
title : options.title, title: options.title,
html : options.content, html: options.content,
footer : footer.join(''), footer: footer.join(''),
onClose : options.hiddenCallback, onClose: options.hiddenCallback,
size : options.size size: options.size
}); });
// if (options.align === 'right') { // if (options.align === 'right') {
// $div.css('left', $(window).width() // $div.css('left', $(window).width()
// - $div.find('.modal-content').width() - 60); // - $div.find('.modal-content').width() - 60);
// } // }
var $ok = $div.find('[name=ok]'); var $ok = $div.find('[name=ok]');
$ok.on('click', function(e) { $ok.on('click', function (e) {
options.okCallback(); options.okCallback();
$div.modal('hide'); $div.modal('hide');
}); });
...@@ -227,8 +227,8 @@ morpheus.FormBuilder.showOkCancel = function(options) { ...@@ -227,8 +227,8 @@ morpheus.FormBuilder.showOkCancel = function(options) {
if (options.draggable) { if (options.draggable) {
$div.draggable({ $div.draggable({
handle : '.modal-header', handle: '.modal-header',
containment : 'document' containment: 'document'
}); });
} }
// $div.on('click', '[name=apply]', function(e) { // $div.on('click', '[name=apply]', function(e) {
...@@ -237,7 +237,7 @@ morpheus.FormBuilder.showOkCancel = function(options) { ...@@ -237,7 +237,7 @@ morpheus.FormBuilder.showOkCancel = function(options) {
return $div; return $div;
}; };
morpheus.FormBuilder.hasChanged = function(object, keyToUIElement) { morpheus.FormBuilder.hasChanged = function (object, keyToUIElement) {
var keys = _.keys(keyToUIElement); var keys = _.keys(keyToUIElement);
for (var i = 0; i < keys.length; i++) { for (var i = 0; i < keys.length; i++) {
var key = keys[i]; var key = keys[i];
...@@ -249,7 +249,7 @@ morpheus.FormBuilder.hasChanged = function(object, keyToUIElement) { ...@@ -249,7 +249,7 @@ morpheus.FormBuilder.hasChanged = function(object, keyToUIElement) {
} }
return false; return false;
}; };
morpheus.FormBuilder.getValue = function($element) { morpheus.FormBuilder.getValue = function ($element) {
var list = $element.data('morpheus.checkbox-list'); var list = $element.data('morpheus.checkbox-list');
if (list != null) { if (list != null) {
return list.val(); return list.val();
...@@ -265,10 +265,10 @@ morpheus.FormBuilder.getValue = function($element) { ...@@ -265,10 +265,10 @@ morpheus.FormBuilder.getValue = function($element) {
: $element.val(); : $element.val();
}; };
morpheus.FormBuilder._showInModal = function(options) { morpheus.FormBuilder._showInModal = function (options) {
var html = []; var html = [];
options = $.extend({}, { options = $.extend({}, {
size : '' size: ''
}, options); }, options);
html.push('<div class="modal" role="dialog" aria-hidden="false"'); html.push('<div class="modal" role="dialog" aria-hidden="false"');
if (options.z) { if (options.z) {
...@@ -295,14 +295,14 @@ morpheus.FormBuilder._showInModal = function(options) { ...@@ -295,14 +295,14 @@ morpheus.FormBuilder._showInModal = function(options) {
html.push('</div>'); html.push('</div>');
html.push('</div>'); html.push('</div>');
var $div = $(html.join('')); var $div = $(html.join(''));
$div.on('mousewheel', function(e) { $div.on('mousewheel', function (e) {
e.stopPropagation(); e.stopPropagation();
}); });
$div.find('.modal-body').html(options.html); $div.find('.modal-body').html(options.html);
$div.prependTo($(document.body)); $div.prependTo($(document.body));
$div.modal({ $div.modal({
backdrop : options.backdrop === true ? true : false, backdrop: options.backdrop === true ? true : false,
}).on('hidden.bs.modal', function(e) { }).on('hidden.bs.modal', function (e) {
$div.remove(); $div.remove();
if (options.onClose) { if (options.onClose) {
options.onClose(); options.onClose();
...@@ -332,10 +332,10 @@ morpheus.FormBuilder._showInModal = function(options) { ...@@ -332,10 +332,10 @@ morpheus.FormBuilder._showInModal = function(options) {
// return id; // return id;
// }; // };
morpheus.FormBuilder.prototype = { morpheus.FormBuilder.prototype = {
appendContent : function($content) { appendContent: function ($content) {
this.$form.append($content); this.$form.append($content);
}, },
addSeparator : function() { addSeparator: function () {
var html = []; var html = [];
html.push('<div class="form-group">'); html.push('<div class="form-group">');
if (!this.vertical) { if (!this.vertical) {
...@@ -348,7 +348,7 @@ morpheus.FormBuilder.prototype = { ...@@ -348,7 +348,7 @@ morpheus.FormBuilder.prototype = {
html.push('</div>'); html.push('</div>');
this.$form.append(html.join('')); this.$form.append(html.join(''));
}, },
_append : function(html, field, isFieldStart) { _append: function (html, field, isFieldStart) {
var that = this; var that = this;
var required = field.required; var required = field.required;
var name = field.name; var name = field.name;
...@@ -394,7 +394,7 @@ morpheus.FormBuilder.prototype = { ...@@ -394,7 +394,7 @@ morpheus.FormBuilder.prototype = {
if ('radio' === type) { if ('radio' === type) {
if (field.options) { if (field.options) {
_.each(field.options, _.each(field.options,
function(choice) { function (choice) {
var isChoiceObject = _.isObject(choice) var isChoiceObject = _.isObject(choice)
&& choice.value !== undefined; && choice.value !== undefined;
var optionValue = isChoiceObject ? choice.value var optionValue = isChoiceObject ? choice.value
...@@ -462,7 +462,7 @@ morpheus.FormBuilder.prototype = { ...@@ -462,7 +462,7 @@ morpheus.FormBuilder.prototype = {
html.push(' multiple'); html.push(' multiple');
} }
html.push('>'); html.push('>');
_.each(field.options, function(choice) { _.each(field.options, function (choice) {
if (choice && choice.divider) { if (choice && choice.divider) {
html.push('<option data-divider="true"></option>'); html.push('<option data-divider="true"></option>');
} else { } else {
...@@ -493,18 +493,18 @@ morpheus.FormBuilder.prototype = { ...@@ -493,18 +493,18 @@ morpheus.FormBuilder.prototype = {
+ '_all" href="#">All</a>&nbsp;|&nbsp;<a name="' + name + '_all" href="#">All</a>&nbsp;|&nbsp;<a name="' + name
+ '_none" href="#">None</a></p>'); + '_none" href="#">None</a></p>');
that.$form.on('click', '[name=' + name + '_all]', that.$form.on('click', '[name=' + name + '_all]',
function(evt) { function (evt) {
evt.preventDefault(); evt.preventDefault();
var $select = that.$form var $select = that.$form
.find('[name=' + name + ']'); .find('[name=' + name + ']');
$select.selectpicker('val', $.map($select $select.selectpicker('val', $.map($select
.find('option'), function(o) { .find('option'), function (o) {
return $(o).val(); return $(o).val();
})); }));
$select.trigger('change'); $select.trigger('change');
}); });
that.$form.on('click', '[name=' + name + '_none]', that.$form.on('click', '[name=' + name + '_none]',
function(evt) { function (evt) {
evt.preventDefault(); evt.preventDefault();
var $select = that.$form var $select = that.$form
.find('[name=' + name + ']'); .find('[name=' + name + ']');
...@@ -563,7 +563,7 @@ morpheus.FormBuilder.prototype = { ...@@ -563,7 +563,7 @@ morpheus.FormBuilder.prototype = {
if (typeof Dropbox !== 'undefined') { if (typeof Dropbox !== 'undefined') {
options.push('Dropbox'); options.push('Dropbox');
} }
_.each(options, function(choice, index) { _.each(options, function (choice, index) {
var isChoiceObject = _.isObject(choice) var isChoiceObject = _.isObject(choice)
&& choice.value !== undefined; && choice.value !== undefined;
var optionValue = isChoiceObject ? choice.value : choice; var optionValue = isChoiceObject ? choice.value : choice;
...@@ -606,27 +606,26 @@ morpheus.FormBuilder.prototype = { ...@@ -606,27 +606,26 @@ morpheus.FormBuilder.prototype = {
.on( .on(
'change', 'change',
'[name=' + name + '_picker]', '[name=' + name + '_picker]',
function(evt) { function (evt) {
var $this = $(this); var $this = $(this);
var val = $this.val(); var val = $this.val();
var showTextInput = val === 'URL'; var showTextInput = val === 'URL';
if ('Dropbox' === val) { if ('Dropbox' === val) {
var options = { var options = {
success : function(results) { success: function (results) {
var val = !isMultiple ? results[0].link var val = !isMultiple ? results[0].link
: results.map(function( : results.map(function (result) {
result) {
return result.link; return result.link;
}); });
that.setValue(name, val); that.setValue(name, val);
that.trigger('change', { that.trigger('change', {
name : name, name: name,
value : val value: val
}); });
}, },
linkType : 'direct', linkType: 'direct',
multiselect : isMultiple multiselect: isMultiple
}; };
Dropbox.choose(options); Dropbox.choose(options);
} else if ('My Computer' === val) { } else if ('My Computer' === val) {
...@@ -638,23 +637,29 @@ morpheus.FormBuilder.prototype = { ...@@ -638,23 +637,29 @@ morpheus.FormBuilder.prototype = {
showTextInput ? '' : 'none'); showTextInput ? '' : 'none');
}); });
// URL // URL
that.$form.on('keyup', '[name=' + name + '_text]', function(evt) { that.$form.on('keyup', '[name=' + name + '_text]', function (evt) {
var text = $.trim($(this).val()); var text = $.trim($(this).val());
if (isMultiple) {
text = text.split(',').filter(function (t) {
t = $.trim(t);
return t !== '';
});
}
that.setValue(name, text); that.setValue(name, text);
if (evt.which === 13) { if (evt.which === 13) {
that.trigger('change', { that.trigger('change', {
name : name, name: name,
value : text value: text
}); });
} }
}); });
// browse file selected // browse file selected
that.$form.on('change', '[name=' + name + '_file]', function(evt) { that.$form.on('change', '[name=' + name + '_file]', function (evt) {
var files = evt.target.files; // FileList object var files = evt.target.files; // FileList object
that.setValue(name, isMultiple ? files : files[0]); that.setValue(name, isMultiple ? files : files[0]);
that.trigger('change', { that.trigger('change', {
name : name, name: name,
value : files[0] value: files[0]
}); });
}); });
} else { } else {
...@@ -689,15 +694,15 @@ morpheus.FormBuilder.prototype = { ...@@ -689,15 +694,15 @@ morpheus.FormBuilder.prototype = {
html.push('</span>'); html.push('</span>');
} }
}, },
append : function(fields) { append: function (fields) {
var html = []; var html = [];
var that = this; var that = this;
var isArray = morpheus.Util.isArray(fields); var isArray = morpheus.Util.isArray(fields);
if (!isArray) { if (!isArray) {
fields = [ fields ]; fields = [fields];
} }
html.push('<div class="form-group">'); html.push('<div class="form-group">');
_.each(fields, function(field, index) { _.each(fields, function (field, index) {
that._append(html, field, index === 0); that._append(html, field, index === 0);
}); });
html.push('</div>'); html.push('</div>');
...@@ -707,13 +712,13 @@ morpheus.FormBuilder.prototype = { ...@@ -707,13 +712,13 @@ morpheus.FormBuilder.prototype = {
var checkBoxLists = $div.find('.checkbox-list'); var checkBoxLists = $div.find('.checkbox-list');
if (checkBoxLists.length > 0) { if (checkBoxLists.length > 0) {
var checkBoxIndex = 0; var checkBoxIndex = 0;
_.each(fields, function(field) { _.each(fields, function (field) {
// needs to already be in dom // needs to already be in dom
if (field.type === 'checkbox-list') { if (field.type === 'checkbox-list') {
var list = new morpheus.CheckBoxList({ var list = new morpheus.CheckBoxList({
responsive : false, responsive: false,
$el : $(checkBoxLists[checkBoxIndex]), $el: $(checkBoxLists[checkBoxIndex]),
items : field.options items: field.options
}); });
$(checkBoxLists[checkBoxIndex]).data( $(checkBoxLists[checkBoxIndex]).data(
...@@ -723,22 +728,22 @@ morpheus.FormBuilder.prototype = { ...@@ -723,22 +728,22 @@ morpheus.FormBuilder.prototype = {
}); });
} }
$div.find('.selectpicker').selectpicker({ $div.find('.selectpicker').selectpicker({
iconBase : 'fa', iconBase: 'fa',
tickIcon : 'fa-check', tickIcon: 'fa-check',
style : 'btn-default btn-sm' style: 'btn-default btn-sm'
}); });
}, },
clear : function() { clear: function () {
this.$form.empty(); this.$form.empty();
}, },
getValue : function(name) { getValue: function (name) {
var $v = this.$form.find('[name=' + name + ']'); var $v = this.$form.find('[name=' + name + ']');
if ($v.length === 0) { if ($v.length === 0) {
$v = this.$form.find('[name=' + name + '_picker]'); $v = this.$form.find('[name=' + name + '_picker]');
} }
return morpheus.FormBuilder.getValue($v); return morpheus.FormBuilder.getValue($v);
}, },
setOptions : function(name, options, selectFirst) { setOptions: function (name, options, selectFirst) {
var $select = this.$form.find('[name=' + name + ']'); var $select = this.$form.find('[name=' + name + ']');
var checkBoxList = $select.data('morpheus.checkbox-list'); var checkBoxList = $select.data('morpheus.checkbox-list');
if (checkBoxList) { if (checkBoxList) {
...@@ -746,7 +751,7 @@ morpheus.FormBuilder.prototype = { ...@@ -746,7 +751,7 @@ morpheus.FormBuilder.prototype = {
} else { } else {
var html = []; var html = [];
var selection = $select.val(); var selection = $select.val();
_.each(options, function(choice) { _.each(options, function (choice) {
html.push('<option value="'); html.push('<option value="');
var isChoiceObject = _.isObject(choice) var isChoiceObject = _.isObject(choice)
&& choice.value !== undefined; && choice.value !== undefined;
...@@ -773,14 +778,14 @@ morpheus.FormBuilder.prototype = { ...@@ -773,14 +778,14 @@ morpheus.FormBuilder.prototype = {
} }
} }
}, },
find : function(name) { find: function (name) {
return this.$form.find('[name=' + name + ']'); return this.$form.find('[name=' + name + ']');
}, },
setHelpText : function(name, value) { setHelpText: function (name, value) {
var v = this.$form.find('[name=' + name + '_help]'); var v = this.$form.find('[name=' + name + '_help]');
v.html(value); v.html(value);
}, },
setValue : function(name, value) { setValue: function (name, value) {
var v = this.$form.find('[name=' + name + ']'); var v = this.$form.find('[name=' + name + ']');
if (v.length === 0) { if (v.length === 0) {
v = this.$form.find('[name=' + name + '_picker]'); v = this.$form.find('[name=' + name + '_picker]');
...@@ -808,7 +813,7 @@ morpheus.FormBuilder.prototype = { ...@@ -808,7 +813,7 @@ morpheus.FormBuilder.prototype = {
} }
}, },
setVisible : function(name, visible) { setVisible: function (name, visible) {
var $div = this.$form.find('[name=' + name + ']') var $div = this.$form.find('[name=' + name + ']')
.parents('.form-group'); .parents('.form-group');
if (visible) { if (visible) {
...@@ -817,12 +822,12 @@ morpheus.FormBuilder.prototype = { ...@@ -817,12 +822,12 @@ morpheus.FormBuilder.prototype = {
$div.hide(); $div.hide();
} }
}, },
remove : function(name) { remove: function (name) {
var $div = this.$form.find('[name=' + name + ']') var $div = this.$form.find('[name=' + name + ']')
.parents('.form-group'); .parents('.form-group');
$div.remove(); $div.remove();
}, },
setEnabled : function(name, enabled) { setEnabled: function (name, enabled) {
var $div = this.$form.find('[name=' + name + ']'); var $div = this.$form.find('[name=' + name + ']');
$div.attr('disabled', !enabled); $div.attr('disabled', !enabled);
if (!enabled) { if (!enabled) {
......
...@@ -2177,6 +2177,7 @@ morpheus.HeatMap.prototype = { ...@@ -2177,6 +2177,7 @@ morpheus.HeatMap.prototype = {
canvas.height = heatMapHeight * morpheus.CanvasUtil.BACKING_SCALE; canvas.height = heatMapHeight * morpheus.CanvasUtil.BACKING_SCALE;
canvas.style.height = heatMapHeight + 'px'; canvas.style.height = heatMapHeight + 'px';
var context = canvas.getContext('2d'); var context = canvas.getContext('2d');
morpheus.CanvasUtil.resetTransform(context);
context.save(); context.save();
context.translate(-this.heatmap.lastClip.x, -startPix); context.translate(-this.heatmap.lastClip.x, -startPix);
context.rect(this.heatmap.lastClip.x, startPix, this.heatmap.lastClip.width, this.heatmap.lastClip.height); context.rect(this.heatmap.lastClip.x, startPix, this.heatmap.lastClip.width, this.heatmap.lastClip.height);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment