Parcourir la source

Add title to portrait image tag.

master
Ben Kurtovic il y a 7 ans
Parent
révision
350172fd04
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      static/main.js

+ 2
- 2
static/main.js Voir le fichier

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


Chargement…
Annuler
Enregistrer