summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/etc/accessibility.js
blob: ad04980cb658384422a2c2d75c8250256cf5af78 (plain)
1
2
3
4
5
6
7
8
9
10
$(function(){
  $("h1").each(function(el){
    console.log(el)
    el['aria-label'] = 'Section title is ' + el.innerText
  })
})

function stonewash (s) {
  return s.replace(/'0/g, '20').replace(/_/g, ' ')
}