소스 검색

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() {


불러오는 중...
취소
저장