浏览代码

Add title to portrait image tag.

master
Ben Kurtovic 7 年前
父节点
当前提交
350172fd04
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      static/main.js

+ 2
- 2
static/main.js 查看文件

@@ -29,10 +29,10 @@ $(function() {
}
});
}
}).keypress(function (e) {
}).css("cursor", "pointer").keypress(function (e) {
if (e.which === 13)
$(this).click();
}).css("cursor", "pointer").prop("alt", "Options").prop("tabindex", 0);
}).prop("title", "Options").prop("alt", "Options").prop("tabindex", 0);

// Switch style immediately without reloading the page:
$("#style-options form").submit(function() {


正在加载...
取消
保存