blob: 614c3796527bfcf1da228df49b92d90e7b4b9cba (
plain)
1
2
3
4
5
6
7
8
9
|
$(function(){
$("h1").each(function(){
this['aria-label'] = 'Section title is ' + this.innerText
})
})
function stonewash (s) {
return s.replace(/'0/g, '20').replace(/_/g, ' ')
}
|