diff --git a/src/runtime/javascript/minibar/about.html b/src/runtime/javascript/minibar/about.html index 11e4f46f0..92a250295 100644 --- a/src/runtime/javascript/minibar/about.html +++ b/src/runtime/javascript/minibar/about.html @@ -80,11 +80,21 @@ Some implementation details: start_minibar options (server, grammars_url, grammar_list, show_grouped_translations, delete_button_text) to make minibar.js more resuable.) +
  • [Added 2010-05-26] The magnets are now created with + <input type=button> tags to make them clickable in more browsers. +
  • [Added 2010-05-26] The text entry field is now visible from the start, and it is + removed when no more words can be added to the sentence. When you press enter, the a word + is added if there is only one magnet left, or if what you have entered + exactly matches one of the remaining magnet. +
  • [Added 2010-05-28] Added a link to make it easy to try the same sentence in + Google Translate. + This can be turned of by passing the option {try_google:false} to + start_minibar.
    - Last modified: Fri Apr 30 16:47:43 CEST 2010 + Last modified: Fri May 28 18:11:05 CEST 2010
    TH diff --git a/src/runtime/javascript/minibar/minibar.html b/src/runtime/javascript/minibar/minibar.html index ea685fb80..4e5c1f161 100644 --- a/src/runtime/javascript/minibar/minibar.html +++ b/src/runtime/javascript/minibar/minibar.html @@ -13,7 +13,8 @@ var my_options= { //grammar_list: ["Foods.pgf"], show_abstract: true, show_trees: true, - show_grouped_translations: false + show_grouped_translations: false, + try_google: true } @@ -31,7 +32,7 @@ var my_options= { & Translator] -HTML Last modified: Wed May 26 22:35:48 CEST 2010 +HTML Last modified: Fri May 28 18:16:11 CEST 2010
    TH