diff --git a/assets/global.js b/assets/global.js index 9ba08f7..0e44877 100644 --- a/assets/global.js +++ b/assets/global.js @@ -15,28 +15,7 @@ $(document).ready(function(){ $(".source-code-link").load("/page-inserts/source-code-link.html"); // initiate MDC buttons - const mdc_buttons = document.querySelectorAll('.mdc-button'); - for (const button of mdc_buttons) { - mdc.ripple.MDCRipple.attachTo(button); - } - - // initiate FABs - const mdc_fabs = document.querySelectorAll('.mdc-fab'); - for (const fab of mdc_fabs) { - mdc.ripple.MDCRipple.attachTo(fab); - } - - // initiate text fields - const mdc_text_fields = document.querySelectorAll('.mdc-text-field'); - for (const text_field of mdc_text_fields) { - mdc.textField.MDCTextField.attachTo(text_field); - } - - // initiate helper texts - const mdc_helper_texts = document.querySelectorAll(".mdc-text-field-helper-text"); - for (const helper_text of mdc_helper_texts) { - mdc.textField.MDCHelperText.attachTo(helper_text); - } + mdc.autoInit(); var drawer_item_link_query_selector = ".mdc-list-item[href='" + window.activated_drawer_item_link; $(drawer_item_link_query_selector + "']").addClass("mdc-list-item--activated"); diff --git a/luhn-algorithm/index.html b/luhn-algorithm/index.html index a83904c..06be2a1 100644 --- a/luhn-algorithm/index.html +++ b/luhn-algorithm/index.html @@ -60,7 +60,7 @@