diff --git a/common/js/plugins/ui.colorpicker/xe_colorpicker.js b/common/js/plugins/ui.colorpicker/xe_colorpicker.js
index 70e8426da..1466f6632 100644
--- a/common/js/plugins/ui.colorpicker/xe_colorpicker.js
+++ b/common/js/plugins/ui.colorpicker/xe_colorpicker.js
@@ -4,9 +4,12 @@
**/
jQuery(function($){
- $.fn.xe_colorpicker = function(settings){
+ $.fn.xe_colorpicker = function(settings){
return this.jPicker(settings);
- }
+ }
- $('input.color-indicator').xe_colorpicker();
-});
+ // 컬러 피커가 내장된 브라우저에서는 내장된 컬러피커 이용 by misol 2016.02.05
+ if ( $("input.color-indicator").prop('type') != 'color' ) {
+ $('input.color-indicator').xe_colorpicker();
+ }
+});
\ No newline at end of file
diff --git a/common/tpl/popup_layout.html b/common/tpl/popup_layout.html
index 7896f4986..ac0d1ed18 100644
--- a/common/tpl/popup_layout.html
+++ b/common/tpl/popup_layout.html
@@ -1,7 +1,5 @@
-