Files
nextcloud_minimalprofile/js/minimalprofile.js

15 lines
414 B
JavaScript
Raw Normal View History

2026-04-16 16:37:44 +02:00
/**
* Minimal Profile - Test JS loading
*/
(function() {
2026-04-16 16:37:44 +02:00
'use strict';
console.log('MinimalProfile JS: START');
// Load CSS directly
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = OC.linkTo('minimalprofile', 'css/minimalprofile.css');
document.head.appendChild(link);
console.log('MinimalProfile JS: CSS loaded from ' + link.href);
})();