|
@@ -440,6 +440,34 @@ window.onload = function () {
|
|
|
});
|
|
|
}
|
|
|
})
|
|
|
+
|
|
|
+ $('#sketch_name').focus(function () {
|
|
|
+ if (window.location.href.indexOf("en") > -1) {
|
|
|
+ this.setAttribute("placeholder", "Please enter the name of the work");
|
|
|
+ $('#sketch_name').css("width","330px");
|
|
|
+ }
|
|
|
+ else if(window.location.href.indexOf("zh-hans") > -1){
|
|
|
+ this.setAttribute("placeholder", "请输入作品名称");
|
|
|
+ $('#sketch_name').css("width","220px");
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ this.setAttribute("placeholder", "請輸入作品名稱");
|
|
|
+ $('#sketch_name').css("width","220px");
|
|
|
+ }
|
|
|
+ }).blur(function () {
|
|
|
+ if (window.location.href.indexOf("en") > -1) {
|
|
|
+ this.setAttribute("placeholder", "Please enter the name of the work");
|
|
|
+ $('#sketch_name').css("width","330px");
|
|
|
+ }
|
|
|
+ else if(window.location.href.indexOf("zh-hans") > -1){
|
|
|
+ this.setAttribute("placeholder", "请输入作品名称");
|
|
|
+ $('#sketch_name').css("width","220px");
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ this.setAttribute("placeholder", "請輸入作品名稱");
|
|
|
+ $('#sketch_name').css("width","220px");
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
function styled() {
|