orbit-basic/app/assets/javascripts/orbitdesktopAPI.js

60 lines
1.6 KiB
JavaScript
Raw Normal View History

2012-03-28 10:53:30 +00:00
// JavaScript Document
$.extend($.expr[':'], {
'containsi': function (elem, i, match, array) {
return (elem.textContent || elem.innerText || '').toLowerCase().indexOf((match[3] || "").toLowerCase()) >= 0;
}
});
$.fn.sort = function(c) {
return this.pushStack([].sort.apply(this, arguments), []);
};
var sortAscending = function(a, b) {
return $(a).find("h1").text() > $(b).find("h1").text() ? 1 : -1;
};
var sortDescending = function(a, b) {
return $(a).find("h1").text() < $(b).find("h1").text() ? 1 : -1;
};
var orbitDesktopAPI = function(){
o = this;
2012-03-29 11:50:23 +00:00
this.notify = function(msg,type,time){
var $notify = $("#orbitnote");
var img, n_height;
2012-03-29 11:50:23 +00:00
if(!type)type="";
switch(type){
case "alert":
img = "note_alert.png";
break;
case "imp":
img = "note_imp.png";
break;
case "success":
img = "note_success.png";
break;
default:
img = "note_alert.png";
break;
}
2012-04-05 12:32:56 +00:00
$notify.find("img#note_img").attr("src",o.notifyImgPath+img);
2012-03-29 11:50:23 +00:00
$notify.find(".note_message").text(msg);
n_height = $notify.outerHeight();
2012-03-29 11:50:23 +00:00
if(!time)time=5000; else time=time*1000;
$notify
.css({'top':-n_height, 'display':'block', 'opacity':0})
.animate({top:0,opacity:1},200)
.delay(time)
.animate({top:-n_height,opacity:0},200);
2012-03-28 10:53:30 +00:00
};
2012-04-11 07:31:10 +00:00
this.executeFunc = function(func,callbackFn){
func.call(this);
if(callbackFn){
callbackFn.call(this,func);
}
};
this.sortJSON = function(field, reverse, primer){
var key = function (x) {return primer ? primer(x[field]) : x[field]};
return function (a,b) {
var A = key(a), B = key(b);
return ((A < B) ? -1 : (A > B) ? +1 : 0) * [-1,1][+!!reverse];
}
}
2012-03-29 11:50:23 +00:00
};