Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Commit

Permalink
잘못된 스크립트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
thisgun committed May 25, 2018
1 parent 1e7b10a commit bd9f11b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/shop.override.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jQuery(function($){
if(parseInt(price) >= 0)
opt_prc = "+"+number_format(String(price))+"원";
else
opt_prc = +number_format(String(price))+"원";
opt_prc = number_format(String(price))+"원";

opt += "<li class=\""+li_class+"\">";
opt += "<input type=\"hidden\" name=\"io_type["+item_code+"][]\" value=\""+type+"\">";
Expand Down

0 comments on commit bd9f11b

Please sign in to comment.