Fungovanie tejto stránky je z dôvodu údržby dočasne obmedzené. Ak článok nevyrieši váš problém a chcete položiť otázku, napíšte našej komunite podpory na Twitter @FirefoxSupport alebo Reddit /r/firefox.

Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Ďalšie informácie

How can i differentiate Nightly is opened in Metro or Desktop mode in javascript?

  • 4 odpovede
  • 1 má tento problém
  • 1 zobrazenie
  • Posledná odpoveď od Matt Brubeck

more options

We are developing apps using Microsoft technologies. One of our app is required plugins support. In Win8 Metro mode won't support any plug ins. So, we want to detect it and ask the user to open it in Desktop mode. This detection is done through Javascript. We can able to detect for IE. How can we detect this for Nightly? Could you please provide a solution for this.

Thanks In Advance.

We are developing apps using Microsoft technologies. One of our app is required plugins support. In Win8 Metro mode won't support any plug ins. So, we want to detect it and ask the user to open it in Desktop mode. This detection is done through Javascript. We can able to detect for IE. How can we detect this for Nightly? Could you please provide a solution for this. Thanks In Advance.

Všetky odpovede (4)

more options

Fixed. It was due to the plugin, but the js, tiny_mce.js

spellcheck = 1 -> Works

more options

I am not able to understand the solution. Could you please provide a code snippet for that...

more options

Fields "wysiwyg" are based on js library "tiny_mce.js" tyny_mce.js compares if (! A.gecko_spellcheck) {z.getBody (). spellcheck = 0} ... Changing in comparing the number 0 with number 1 is solved if (! A.gecko_spellcheck) {z.getBody (). spellcheck = 1} ... You can download the library in, http://www.tinymce.com/, and view all code.

more options

Hi, I'm one of the developers on the Firefox for Metro project. We don't yet have a recommended way for web pages to detect whether Firefox is running in Metro mode, but we'll be working on that here:

https://bugzilla.mozilla.org/show_bug.cgi?id=938722