summaryrefslogtreecommitdiffstats
path: root/examples/unstablecomponent/config/controller.qs
blob: ea7f96802724aa664eae1cdf289d72f50e803c3d (plain)
1
2
3
4
5
6
7
8
9
10
function Controller() {
    installer.unstableComponentFound.connect(unstableComponentFound)
}

unstableComponentFound = function(type, message, comp)
{
    console.log("Unstable component, type: " + type)
    console.log("Unstable component, message: " + message)
    console.log("Unstable component, name: " + comp)
}