diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-12-23 01:13:34 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-12-23 01:13:34 +0100 |
commit | b55d584309ed6fde064c3f251e4d21e2ab754acd (patch) | |
tree | 38a779f5f955a1bac9fd7ce3c718b3ed46ca601d /web/src/js/flow | |
parent | d5e16d7cf193c7ef83ee53d464efb7c46fd921e8 (diff) | |
download | mitmproxy-b55d584309ed6fde064c3f251e4d21e2ab754acd.tar.gz mitmproxy-b55d584309ed6fde064c3f251e4d21e2ab754acd.tar.bz2 mitmproxy-b55d584309ed6fde064c3f251e4d21e2ab754acd.zip |
web: simpler filter ui
Diffstat (limited to 'web/src/js/flow')
-rw-r--r-- | web/src/js/flow/utils.js | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/web/src/js/flow/utils.js b/web/src/js/flow/utils.js index 31780651..113f0b1a 100644 --- a/web/src/js/flow/utils.js +++ b/web/src/js/flow/utils.js @@ -54,15 +54,4 @@ var RequestUtils = _.extend(_MessageUtils, { } }); -var ResponseUtils = _.extend(_MessageUtils, {}); - -HighlightColors = [ - "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", "#1f77b4", "#bcbd22", "#17becf", - "#ffbb78", "#98df8a", "#ff9896", "#c5b0d5", "#aec7e8", "#dbdb8d", "#9edae5" -]; -FadedHighlightColors = HighlightColors.map(function (color) { - return "rgba(" + - parseInt(color.substr(1, 2), 16) + "," + - parseInt(color.substr(3, 2), 16) + "," + - parseInt(color.substr(5, 2), 16) + ",0.3)"; -});
\ No newline at end of file +var ResponseUtils = _.extend(_MessageUtils, {});
\ No newline at end of file |