a9f3f0c9aa2458e3ff2a8c716b54abf88c560174.svn-base 819 B

12345678910111213141516171819202122232425262728293031
  1. $HourGlassPopup = function (viewModel, visiblePopup) {
  2. //var visiblePopup = ko.observable(false);
  3. /*
  4. $("#large-indicator").dxLoadIndicator({
  5. height: 60,
  6. width: 60
  7. });*/
  8. //$("#header").title = 'dsfs';
  9. //if (headerText == undefined || headerText == null) headerText = '작업중 입니다.'
  10. //document.getElementById('header').innerHTML = headerText;
  11. viewModel.popupOptions = {
  12. width: 280,
  13. height: 120,
  14. contentTemplate: "info",
  15. showTitle: false,
  16. title: "작업 중",
  17. visible: visiblePopup,
  18. dragEnabled: false,
  19. shading: false,
  20. closeOnOutsideClick: false
  21. };
  22. /*
  23. return {
  24. popupOptions: popupOptions,
  25. show: function () {
  26. popupVisible(true);
  27. }
  28. };*/
  29. }