You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
2.5 KiB

7 years ago
  1. /*
  2. Copyright (C) NAVER corp.
  3. This library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. This library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with this library; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  14. */
  15. /*
  16. * Smart Editor 2 Configuration : This setting must be changed by service
  17. */
  18. window.nhn = window.nhn || {};
  19. nhn.husky = nhn.husky || {};
  20. nhn.husky.SE2M_Configuration = nhn.husky.SE2M_Configuration || {};
  21. /**
  22. * CSS LazyLoad를 위한 경로
  23. */
  24. nhn.husky.SE2M_Configuration.SE2B_CSSLoader = {
  25. sCSSBaseURI : "css"
  26. };
  27. /**
  28. * 편집영역 설정
  29. */
  30. nhn.husky.SE2M_Configuration.SE_EditingAreaManager = {
  31. sCSSBaseURI : "css", // smart_editor2_inputarea.html 파일의 상대경로
  32. sBlankPageURL : "smart_editor2_inputarea.html",
  33. sBlankPageURL_EmulateIE7 : "smart_editor2_inputarea_ie8.html",
  34. aAddtionalEmulateIE7 : [] // IE8 default 사용, IE9 ~ 선택적 사용
  35. };
  36. /**
  37. * [웹접근성]
  38. * 단축키 ALT+, ALT+. 이용하여 스마트에디터 영역의 이전/이후 요소로 이동할 있다.
  39. * sBeforeElementId : 스마트에디터 영역 이전 요소의 id
  40. * sNextElementId : 스마트에디터 영역 이후 요소의 id
  41. *
  42. * 스마트에디터 영역 이외의 제목 영역 (:스마트에디터가 적용된 블로그 쓰기 페이지에서의 제목 영역) 해당하는 엘리먼트에서 Tab키를 누르면 에디팅 영역으로 포커스를 이동시킬 있다.
  43. * sTitleElementId : 제목에 해당하는 input 요소의 id.
  44. */
  45. nhn.husky.SE2M_Configuration.SE2M_Accessibility = {
  46. sBeforeElementId : '',
  47. sNextElementId : '',
  48. sTitleElementId : ''
  49. };
  50. /**
  51. * 링크 기능 옵션
  52. */
  53. nhn.husky.SE2M_Configuration.SE2M_Hyperlink = {
  54. bAutolink : true // 자동링크기능 사용여부(기본값:true)
  55. };
  56. nhn.husky.SE2M_Configuration.Quote = {
  57. sImageBaseURL : 'http://static.se2.naver.com/static/img'
  58. };
  59. nhn.husky.SE2M_Configuration.SE2M_ColorPalette = {
  60. bUseRecentColor : false
  61. };