1/** 2 * Copyright (c) 2006-2017, JGraph Ltd 3 * Copyright (c) 2006-2017, Gaudenz Alder 4 */ 5TrelloLibrary = function(ui, data, meta) 6{ 7 TrelloFile.call(this, ui, data, meta); 8}; 9 10//Extends mxEventSource 11mxUtils.extend(TrelloLibrary, TrelloFile); 12 13/** 14 * Overridden to avoid updating data with current file. 15 */ 16TrelloLibrary.prototype.doSave = function(title, success, error) 17{ 18 this.saveFile(title, false, success, error); 19}; 20 21/** 22 * Returns the location as a new object. 23 * @type mx.Point 24 */ 25TrelloLibrary.prototype.open = function() 26{ 27 // Do nothing - this should never be called 28}; 29