mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 03:09:55 +09:00
- MIT 라이선스의 Spectrum 컬러피커 추가. (기존 jPicker를 대체 - 파일은 그대로 두어서 의존성 문제 회피) - 색상 선택하는 부분을 전반적으로 다듬음
17 lines
485 B
JavaScript
17 lines
485 B
JavaScript
// Spectrum Colorpicker
|
|
// Arabic (ar) localization
|
|
// https://github.com/bgrins/spectrum
|
|
(function ( $ ) {
|
|
|
|
var localization = $.spectrum.localization["ar"] = {
|
|
cancelText: "إلغاء",
|
|
chooseText: "إختار",
|
|
clearText: "إرجاع الألوان على ما كانت",
|
|
noColorSelectedText: "لم تختار أي لون",
|
|
togglePaletteMoreText: "أكثر",
|
|
togglePaletteLessText: "أقل"
|
|
};
|
|
|
|
$.extend($.fn.spectrum.defaults, localization);
|
|
|
|
})( jQuery );
|