googledrive.js 344 B

1234567891011121314151617
  1. /**
  2. * Google Drive plugin limits supported storage to Google Drive, browser and device.
  3. */
  4. Draw.loadPlugin(function(ui)
  5. {
  6. ui.oneDrive = null;
  7. ui.dropbox = null;
  8. ui.gitLab = null;
  9. ui.gitHub = null;
  10. ui.trello = null;
  11. window.OneDriveClient = null;
  12. window.DropboxClient = null;
  13. window.TrelloClient = null;
  14. isLocalStorage = false;
  15. });