本文整理汇总了TypeScript中spinner.LoadSpinner类的典型用法代码示例。如果您正苦于以下问题:TypeScript LoadSpinner类的具体用法?TypeScript LoadSpinner怎么用?TypeScript LoadSpinner使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了LoadSpinner类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
socket.onmessage = function(message) {
var data = message.data;
var index = data.indexOf(':');
var value = null;
var type = null;
if(index != -1) {
value = data.substring(index + 1);
type = data.substring(0, index);
} else {
type = data;
}
var route = routes[type];
if(route != undefined) {
if(!subscription.panic) { // this might cause problems with missing messages
for(var i = 0; i < route.length; i++) {
var func = route[i];
if(func != null) {
func(this, type, value);
}
}
}
} else {
console.log("No route defined for '" + type+ "' with '" + value + "'");
}
LoadSpinner.hide(); // hide the spinner
};