Leonardo Trocato
Results
2
comments of
Leonardo Trocato
Based on @Humni 's response, I tweaked it and made it into a jQuery function: ```js $.fn.ajaxSelectPickerRefresh = function(){ return this.each(function () { if(!$(this).data('AjaxBootstrapSelect')) return; var picker = $(this).data('AjaxBootstrapSelect'); var...
for me what worked was simply putting this on my App.tsx (I'm using typescript) `(window as any).soundManager.setup({debugMode: false});` And if you are not using typescript you could simply set: `window.soundManager.setup({debugMode:...