From 8b84e88df650ff95f053ae0b23411e69c0e12692 Mon Sep 17 00:00:00 2001 From: Joshua Gould Date: Fri, 3 Jun 2016 10:26:28 -0400 Subject: [PATCH] show new fields as text --- js/clipboard.min.js | 4 +- src/matrix/vector_util.js | 2 + src/tools/open_file_tool.js | 4 +- src/ui/heat_map_color_scheme.js | 415 ++++++++++++++++---------------- src/ui/heat_map_options.js | 4 +- 5 files changed, 215 insertions(+), 214 deletions(-) diff --git a/js/clipboard.min.js b/js/clipboard.min.js index 5b0581d..e4f7310 100644 --- a/js/clipboard.min.js +++ b/js/clipboard.min.js @@ -1,7 +1,7 @@ /*! - * clipboard.js v1.5.7 + * clipboard.js v1.5.10 * https://zenorocha.github.io/clipboard.js * * Licensed MIT © Zeno Rocha */ -!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,e.Clipboard=t()}}(function(){var t,e,n;return function t(e,n,r){function o(a,c){if(!n[a]){if(!e[a]){var s="function"==typeof require&&require;if(!c&&s)return s(a,!0);if(i)return i(a,!0);var u=new Error("Cannot find module '"+a+"'");throw u.code="MODULE_NOT_FOUND",u}var l=n[a]={exports:{}};e[a][0].call(l.exports,function(t){var n=e[a][1][t];return o(n?n:t)},l,l.exports,t,e,n,r)}return n[a].exports}for(var i="function"==typeof require&&require,a=0;ar;r++)n[r].fn.apply(n[r].ctx,e);return this},off:function(t,e){var n=this.e||(this.e={}),r=n[t],o=[];if(r&&e)for(var i=0,a=r.length;a>i;i++)r[i].fn!==e&&r[i].fn._!==e&&o.push(r[i]);return o.length?n[t]=o:delete n[t],this}},e.exports=r},{}],8:[function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{"default":t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}n.__esModule=!0;var i=function(){function t(t,e){for(var n=0;no;o++)n[o].fn.apply(n[o].ctx,e);return this},off:function(t,e){var n=this.e||(this.e={}),o=n[t],i=[];if(o&&e)for(var r=0,c=o.length;c>r;r++)o[r].fn!==e&&o[r].fn._!==e&&i.push(o[r]);return i.length?n[t]=i:delete n[t],this}},e.exports=o},{}],8:[function(e,n,o){!function(i,r){if("function"==typeof t&&t.amd)t(["module","select"],r);else if("undefined"!=typeof o)r(n,e("select"));else{var c={exports:{}};r(c,i.select),i.clipboardAction=c.exports}}(this,function(t,e){"use strict";function n(t){return t&&t.__esModule?t:{"default":t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var i=n(e),r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol?"symbol":typeof t},c=function(){function t(t,e){for(var n=0;n this.rowCachedMax ? d - : this.rowCachedMax; + : this.rowCachedMax; this.rowCachedMin = d < this.rowCachedMin ? d - : this.rowCachedMin; + : this.rowCachedMin; } } if (this.rowCachedMin === this.rowCachedMax) { @@ -600,4 +599,4 @@ morpheus.RowStats.prototype = { } return false; } -}; \ No newline at end of file +}; diff --git a/src/ui/heat_map_options.js b/src/ui/heat_map_options.js index 0fa803d..0b09d84 100644 --- a/src/ui/heat_map_options.js +++ b/src/ui/heat_map_options.js @@ -37,10 +37,10 @@ morpheus.HeatMapOptions = function (controller) { name: 'fixed (-1.5, -0.1, 0.1, 1.5)', value: 'cn' }, { - name: 'fixed (-90, -80, 80, 90)', + name: 'fixed (-100, -98, -95, 95, 98, 100)', value: '100scale2' }, { - name: 'fixed (-90, 90)', + name: 'fixed (-100, -98, 98, 100)', value: '100scale1' }] }, { -- GitLab