You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

050.Заголовок.js 246B

12345678910
  1. function Заголовок()
  2. {
  3. this.обработатьКлюч = function(ключ, путь, значение)
  4. {
  5. if (ключ == "заголовок")
  6. {
  7. document.title = значение;
  8. }
  9. }
  10. }