aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2015-03-30 11:54:14 +1300
committerAldo Cortesi <aldo@nullcube.com>2015-03-30 11:54:14 +1300
commitad08b80c432dc32eafa373abb19376203a156053 (patch)
tree71e26b179e356e45e859715c1749e2e82a50f342 /libmproxy
parente964983e8137ac7ae77a473dbb308ac910c72ca6 (diff)
parent737002921e9aed701afb49fda8777e8c9286bf09 (diff)
downloadmitmproxy-ad08b80c432dc32eafa373abb19376203a156053.tar.gz
mitmproxy-ad08b80c432dc32eafa373abb19376203a156053.tar.bz2
mitmproxy-ad08b80c432dc32eafa373abb19376203a156053.zip
Merge branch 'master' of ssh.github.com:mitmproxy/mitmproxy
Diffstat (limited to 'libmproxy')
-rw-r--r--libmproxy/web/static/app.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/libmproxy/web/static/app.js b/libmproxy/web/static/app.js
index f9c8ef8d..d5c495f3 100644
--- a/libmproxy/web/static/app.js
+++ b/libmproxy/web/static/app.js
@@ -425,7 +425,7 @@ var FlowActions = {
};
var Query = {
- FILTER: "f",
+ SEARCH: "s",
HIGHLIGHT: "h",
SHOW_EVENTLOG: "e"
};
@@ -2364,7 +2364,7 @@ var MainMenu = React.createClass({displayName: "MainMenu",
},
onFilterChange: function (val) {
var d = {};
- d[Query.FILTER] = val;
+ d[Query.SEARCH] = val;
this.setQuery(d);
},
onHighlightChange: function (val) {
@@ -2376,7 +2376,7 @@ var MainMenu = React.createClass({displayName: "MainMenu",
actions.SettingsActions.update({intercept: val});
},
render: function () {
- var filter = this.getQuery()[Query.FILTER] || "";
+ var search = this.getQuery()[Query.SEARCH] || "";
var highlight = this.getQuery()[Query.HIGHLIGHT] || "";
var intercept = this.state.settings.intercept || "";
@@ -2384,11 +2384,11 @@ var MainMenu = React.createClass({displayName: "MainMenu",
React.createElement("div", null,
React.createElement("div", {className: "menu-row"},
React.createElement(FilterInput, {
- ref: "filter",
- placeholder: "Filter",
- type: "filter",
+ ref: "search",
+ placeholder: "Search",
+ type: "search",
color: "black",
- value: filter,
+ value: search,
onChange: this.onFilterChange}),
React.createElement(FilterInput, {
ref: "highlight",
@@ -2639,7 +2639,7 @@ var MainView = React.createClass({displayName: "MainView",
},
getViewFilt: function () {
try {
- var filt = Filt.parse(this.getQuery()[Query.FILTER] || "");
+ var filt = Filt.parse(this.getQuery()[Query.SEARCH] || "");
var highlightStr = this.getQuery()[Query.HIGHLIGHT];
var highlight = highlightStr ? Filt.parse(highlightStr) : false;
} catch (e) {
@@ -2655,7 +2655,7 @@ var MainView = React.createClass({displayName: "MainView",
};
},
componentWillReceiveProps: function (nextProps) {
- var filterChanged = (this.props.query[Query.FILTER] !== nextProps.query[Query.FILTER]);
+ var filterChanged = (this.props.query[Query.SEARCH] !== nextProps.query[Query.SEARCH]);
var highlightChanged = (this.props.query[Query.HIGHLIGHT] !== nextProps.query[Query.HIGHLIGHT]);
if (filterChanged || highlightChanged) {
this.state.view.recalculate(this.getViewFilt(), this.state.sortKeyFun);