Commit d21ffad4 authored by GoshaZotov's avatar GoshaZotov Committed by Alexander.Trofimov

add const for top10 filters

parent 5e46983d
...@@ -185,6 +185,11 @@ var c_oAscDynamicAutoFilter = { ...@@ -185,6 +185,11 @@ var c_oAscDynamicAutoFilter = {
yesterday: 34 yesterday: 34
}; };
var c_oAscTop10AutoFilter = {
max: 1,
min: 2
}
var c_oAscChangeFilterOptions = { var c_oAscChangeFilterOptions = {
filter: 1, filter: 1,
style: 2 style: 2
...@@ -418,6 +423,10 @@ var c_oAscPopUpSelectorType = { ...@@ -418,6 +423,10 @@ var c_oAscPopUpSelectorType = {
prot = c_oAscDynamicAutoFilter; prot = c_oAscDynamicAutoFilter;
prot['aboveAverage'] = prot.aboveAverage; prot['aboveAverage'] = prot.aboveAverage;
prot['belowAverage'] = prot.belowAverage; prot['belowAverage'] = prot.belowAverage;
window['Asc']['c_oAscTop10AutoFilter'] = window['Asc'].c_oAscTop10AutoFilter = c_oAscTop10AutoFilter;
prot = c_oAscTop10AutoFilter;
prot['max'] = prot.max;
prot['min'] = prot.min;
window['Asc']['c_oAscChangeFilterOptions'] = window['Asc'].c_oAscChangeFilterOptions = c_oAscChangeFilterOptions; window['Asc']['c_oAscChangeFilterOptions'] = window['Asc'].c_oAscChangeFilterOptions = c_oAscChangeFilterOptions;
prot = c_oAscChangeFilterOptions; prot = c_oAscChangeFilterOptions;
prot['filter'] = prot.filter; prot['filter'] = prot.filter;
......
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