calendar/js/app/service/dialogModel.js

77 lines
1.8 KiB
JavaScript

/**
* ownCloud - Calendar App
*
* @author Raghu Nayyar
* @author Georg Ehrke
* @copyright 2016 Raghu Nayyar <beingminimal@gmail.com>
* @copyright 2016 Georg Ehrke <oc.list@georgehrke.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* Model: Dialog
* Description: For Dialog Properties.
*/
app.factory('DialogModel', function() {
'use strict';
return {
initsmall: function(elementId) {
$(elementId).dialog({
width : 400,
height: 300,
resizable: false,
draggable: true,
close : function(event, ui) {
$(this).dialog('destroy');
}
});
},
initbig: function (elementId) {
$(elementId).dialog({
width : 500,
height: 400,
resizable: false,
draggable: true,
close : function(event, ui) {
$(this).dialog('destroy');
}
});
},
open: function (elementId) {
$(elementId).dialog('open');
},
close: function (elementId) {
$(elementId).dialog('close');
},
multiselect: function (elementId) {
this.checked = [];
$(elementId).multiSelect({
minWidth: 300,
createCallback: false,
createText: false,
singleSelect: false,
checked: this.checked,
labels:[]
});
},
checkedarraymultiselect : function () {
return this.checked;
}
};
});