kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.4 KiB
97 lines
2.4 KiB
if(RB==null){
|
|
var RB = {};
|
|
}
|
|
|
|
RB.Object = {
|
|
// Douglas Crockford's technique for object extension
|
|
// http://javascript.crockford.com/prototypal.html
|
|
create: function(){
|
|
function F(){}
|
|
F.prototype = arguments[0];
|
|
obj = new F();
|
|
|
|
// Add all the other arguments as mixins that
|
|
// 'write over' any existing methods
|
|
for (var i=1; i<arguments.length; i++) {
|
|
var methods = arguments[i];
|
|
if (typeof methods == 'object'){
|
|
for(methodName in methods) obj[methodName] = methods[methodName];
|
|
}
|
|
}
|
|
return obj;
|
|
}
|
|
}
|
|
|
|
|
|
// Object factory for redmine_backlogs
|
|
RB.Factory = RB.Object.create({
|
|
|
|
initialize: function(objType, el){
|
|
obj = RB.Object.create(objType);
|
|
obj.initialize(el);
|
|
return obj;
|
|
}
|
|
|
|
});
|
|
|
|
// Utilities
|
|
RB.Dialog = RB.Object.create({
|
|
msg: function(msg){
|
|
dialog = $('#msgBox').size()==0 ? $(document.createElement('div')).attr('id', 'msgBox').appendTo('body') : $('#msgBox');
|
|
dialog.html(msg);
|
|
dialog.dialog({ title: 'Backlogs Plugin',
|
|
buttons: { "OK": function() { $(this).dialog("close"); } },
|
|
modal: true
|
|
});
|
|
},
|
|
|
|
notice: function(msg){
|
|
if(typeof console != "undefined" && console != null) console.log(msg);
|
|
}
|
|
});
|
|
|
|
RB.ajaxQueue = new Array()
|
|
RB.ajaxOngoing = false;
|
|
|
|
RB.ajax = function(options){
|
|
RB.ajaxQueue.push(options);
|
|
if(!RB.ajaxOngoing){ RB.processAjaxQueue(); }
|
|
}
|
|
|
|
RB.processAjaxQueue = function(){
|
|
var options = RB.ajaxQueue.shift();
|
|
|
|
if(options!=null){
|
|
RB.ajaxOngoing = true;
|
|
$.ajax(options);
|
|
}
|
|
}
|
|
|
|
$(document).ajaxComplete(function(event, xhr, settings){
|
|
RB.ajaxOngoing = false;
|
|
RB.processAjaxQueue();
|
|
});
|
|
|
|
// Modify the ajax request before being sent to the server
|
|
$(document).ajaxSend(function(event, request, settings) {
|
|
var c = RB.constants;
|
|
|
|
settings.data = settings.data || "";
|
|
settings.data += (settings.data ? "&" : "") + "project_id=" + c.project_id;
|
|
|
|
if(c.protect_against_forgery){
|
|
settings.data += "&" + c.request_forgery_protection_token + "=" + encodeURIComponent(c.form_authenticity_token);
|
|
}
|
|
});
|
|
|
|
// Abstract the user preference from the rest of the RB objects
|
|
// so that we can change the underlying implementation as needed
|
|
RB.UserPreferences = RB.Object.create({
|
|
get: function(key){
|
|
return $.cookie(key);
|
|
},
|
|
|
|
set: function(key, value){
|
|
$.cookie(key, value, { expires: 365 * 10 });
|
|
}
|
|
}); |