createguide.ui.js 583 B

123456789101112131415161718192021222324
  1. window.openCreateProjectLink = function($target, appTab, isInModal)
  2. {
  3. const link = $target.data('url');
  4. if(!link) return false;
  5. zui.Modal.hide();
  6. openUrl(link, {'app': appTab});
  7. };
  8. $(function()
  9. {
  10. if(!isInModal)
  11. {
  12. if(screen.width <= 1366)
  13. {
  14. $('.m-project-createguide #mainContainer').css('background', '#fff').css('min-width', '800px').width('800px');
  15. }
  16. else
  17. {
  18. $('.m-project-createguide #mainContainer').css('background', '#fff').css('min-width', '1000px').width('1000px');
  19. }
  20. }
  21. })