IPS4 change notification volume.
В IPS4 для проигрывания системных уведомлений используется библиотека howler.js.
Открыть Appearance > Themes > Your skin > Templates > core > global > global > includeJS
<script type="text/javascript">
ips.loader.get( ['core/interface/howler/howler.core.min.js'] ).then( function () {
Howler.volume(0.5);
});
</script>
Для подбора громкости можно добавить событие на какую-нибудь область или элемент с помощью функции:
jQuery(document).ready(function ($) {
$('#ipsLayout_header').click(function () {
ips.loader.get( ['core/interface/howler/howler.core.min.js'] ).then( function () {
sound = new Howl({
src: ips.getSetting('baseURL') + 'applications/core/interface/sounds/notification.mp3',
preload: true
});
//console.log( "Audio created with state: " + Howler.state );
sound.play();
});
});
});