Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //файл dim.js
- // строчка где-то 58
- // найти и заменить это
- $.each(result.rows, function (key, value) {
- $("#maincontrol").append($("<option></option>")
- .attr("value", value.id)
- .attr("data-type", value.Type)
- .attr("data-crc", value.CRC)
- .text(value.Name));
- });
- //на это
- if (environment.login_name.indexOf("_") !== -1) {
- for (let key in result.rows) {
- if (environment.login_name.split('_')[0].toLowerCase().indexOf(result.rows[key].Name.toLowerCase()) !== -1) {
- $("#maincontrol").append($("<option></option>")
- .prop("selected", true)
- .attr("value", result.rows[key].id)
- .attr("data-type", result.rows[key].Type)
- .attr("data-crc", result.rows[key].CRC)
- .text(result.rows[key].Name));
- }
- }
- } else {
- $.each(result.rows, function (key, value) {
- $("#maincontrol").append($("<option></option>")
- .attr("value", value.id)
- .attr("data-type", value.Type)
- .attr("data-crc", value.CRC)
- .text(value.Name));
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement