mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
- MIT 라이선스의 Spectrum 컬러피커 추가. (기존 jPicker를 대체 - 파일은 그대로 두어서 의존성 문제 회피) - 색상 선택하는 부분을 전반적으로 다듬음
18 lines
484 B
JavaScript
18 lines
484 B
JavaScript
// Spectrum Colorpicker
|
|
// Korean (ko) localization
|
|
// https://github.com/bgrins/spectrum
|
|
|
|
(function ( $ ) {
|
|
|
|
var localization = $.spectrum.localization["ko"] = {
|
|
cancelText: "취소",
|
|
chooseText: "선택",
|
|
clearText: "선택 초기화",
|
|
noColorSelectedText: "선택된 색상 없음",
|
|
togglePaletteMoreText: "더보기",
|
|
togglePaletteLessText: "줄이기"
|
|
};
|
|
|
|
$.extend($.fn.spectrum.defaults, localization);
|
|
|
|
})( jQuery );
|