rawles / edit.tf

An in-browser editor for teletext frames.
http://edit.tf/
GNU General Public License v3.0
92 stars 19 forks source link

Allow editing metadata #36

Open bootmii opened 8 years ago

bootmii commented 8 years ago

How are we supposed to create Fastext links, for instance?

rawles commented 8 years ago

This isn't possible at the moment, but thanks for the reminder. I'm not quite sure how I'd implement it. Perhaps a metadata editing screen would be easiest.

pjfdirect commented 7 years ago

Here's a little bit of metadata that might be nice to have, to stop all my edit-tf bookmarks having the same title 📚

Apologies in advance for any daft js below, but you'll get the idea:

function updateTitle(theString) {
  document.title = theString + ' | Edit-TF';
  return false;
}
titleString = 'New';
updateTitle(titleString);
<form>
  <input type="text" name="newString" value="">
  <input name="submit" type="submit" value="Update" onclick="updateTitle(newString)">
</form>