ros.grant.common 2.0.1430 → 2.0.1431
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -194,7 +194,7 @@ class CustomSelectInitializer {
|
|
|
194
194
|
// Установка selectedIndex кастомного селекта в нужное значение
|
|
195
195
|
public static SetSelectedIndex(element: HTMLElement, value: number) {
|
|
196
196
|
|
|
197
|
-
$(element).find('.selected').removeClass('selected');
|
|
197
|
+
$($(element).parent('.select')).find('.selected').removeClass('selected');
|
|
198
198
|
$(element).attr('selected-val', ($('option', $(element))[value] as any).value);
|
|
199
199
|
|
|
200
200
|
(element as any).selectedIndex = value;
|
package/package.json
CHANGED