/** * Minimal Profile - Test JS loading */ (function() { '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); })();