/*
* @title view_pswd
* @description show hidden password http://qiita.com/AQRiL_1132/items/10d6934da27b171a1e2e
* @license MIT License
*/
(function () {
if(typeof this.tgt==='undefined')this.tgt=document.querySelectorAll('input[type="password"]');
var nit=(this.tgt.item(0).getAttribute('type')=='password')?'text':'password';
for(var i=0;i<this.tgt.length;i++)this.tgt.item(i).setAttribute('type',nit);
})();