How can the "quick find" feature be disabled in a web app? For
example, I use Gmail and for any keyboard shortcuts that involve more
than one key, for example, g then i for Go to Inbox, the quick find
dialogue comes up.
On Wed, Aug 5, 2009 at 9:13 PM, emorgan<eugenemorganrea...@gmail.com> wrote:
> How can the "quick find" feature be disabled in a web app? For
> example, I use Gmail and for any keyboard shortcuts that involve more
> than one key, for example, g then i for Go to Inbox, the quick find
> dialogue comes up.
> How can the "quick find" feature be disabled in a web app? For
> example, I use Gmail and for any keyboard shortcuts that involve more
> than one key, for example, g then i for Go to Inbox, the quick find
> dialogue comes up.
I've been having the same issue with Prism, in that I can't seem to
figure out how to disable quick-find. Where is the "web app" folder
that you are referring to?
Looking in my home directory/Application Data/WebApps/[webapp name]/
there doesn't seem to be a prefs.js file. I then created one however
this did not solve the problem. Are there any other places it should
go? prefs.json? Another directory?
Any help here is definitely appreciated.
On Aug 11, 10:30 am, zeekay <zeek...@gmail.com> wrote:
> On Aug 5, 2:13 pm, emorgan <eugenemorganrea...@gmail.com> wrote:
> > How can the "quick find" feature be disabled in a web app? For
> > example, I use Gmail and for any keyboard shortcuts that involve more
> > than one key, for example, g then i for Go to Inbox, the quick find
> > dialogue comes up.
I'm not an expert, but would it not be possible to include those two lines
in your webapp.js script? Something to the effect of:
function startup() {
user_pref("accessibility.typeaheadfind", false);
user_pref("accessibility.typeaheadfind.flashBar", 0);
}
On a Mac, the prefs.js file is located inside the current profile directory
- for example:
~Library/Application Support/[app name]/Profiles/[profile name]/prefs.js
On Fri, Aug 21, 2009 at 11:02 AM, crcsmnky <sun...@gmail.com> wrote:
> I've been having the same issue with Prism, in that I can't seem to
> figure out how to disable quick-find. Where is the "web app" folder
> that you are referring to?
> Looking in my home directory/Application Data/WebApps/[webapp name]/
> there doesn't seem to be a prefs.js file. I then created one however
> this did not solve the problem. Are there any other places it should
> go? prefs.json? Another directory?
> Any help here is definitely appreciated.
> On Aug 11, 10:30 am, zeekay <zeek...@gmail.com> wrote:
> > Add this to your prefs.js in your web app folder:
> > On Aug 5, 2:13 pm, emorgan <eugenemorganrea...@gmail.com> wrote:
> > > How can the "quick find" feature be disabled in a web app? For
> > > example, I use Gmail and for any keyboard shortcuts that involve more
> > > than one key, for example, g then i for Go to Inbox, the quick find
> > > dialogue comes up.