|
|
|
@ -10,7 +10,8 @@
|
|
|
|
|
module.exports = utils = {
|
|
|
|
|
generateUUID: function() {
|
|
|
|
|
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
|
|
|
|
|
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
|
|
|
|
|
var r = Math.random() * 16 | 0,
|
|
|
|
|
v = c == 'x' ? r : (r & 0x3 | 0x8);
|
|
|
|
|
return v.toString(16);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
@ -150,8 +151,7 @@
|
|
|
|
|
badge
|
|
|
|
|
.removeClass('badge-inverse')
|
|
|
|
|
.addClass('badge-important')
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
} else {
|
|
|
|
|
badge
|
|
|
|
|
.removeClass('badge-important')
|
|
|
|
|
.addClass('badge-inverse')
|
|
|
|
@ -167,19 +167,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!String.prototype.trim) {
|
|
|
|
|
String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g, '');};
|
|
|
|
|
String.prototype.trim = function() {
|
|
|
|
|
return this.replace(/^\s+|\s+$/g, '');
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!String.prototype.ltrim) {
|
|
|
|
|
String.prototype.ltrim=function(){return this.replace(/^\s+/,'');};
|
|
|
|
|
String.prototype.ltrim = function() {
|
|
|
|
|
return this.replace(/^\s+/, '');
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!String.prototype.rtrim) {
|
|
|
|
|
String.prototype.rtrim=function(){return this.replace(/\s+$/,'');};
|
|
|
|
|
String.prototype.rtrim = function() {
|
|
|
|
|
return this.replace(/\s+$/, '');
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!String.prototype.fulltrim) {
|
|
|
|
|
String.prototype.fulltrim=function(){return this.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g,'').replace(/\s+/g,' ');};
|
|
|
|
|
String.prototype.fulltrim = function() {
|
|
|
|
|
return this.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g, '').replace(/\s+/g, ' ');
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -187,4 +195,8 @@
|
|
|
|
|
window.utils = module.exports;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})('undefined' === typeof module ? {module:{exports:{}}} : module)
|
|
|
|
|
})('undefined' === typeof module ? {
|
|
|
|
|
module: {
|
|
|
|
|
exports: {}
|
|
|
|
|
}
|
|
|
|
|
} : module)
|