Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Learn More

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

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

  • 4 відповіді
  • 1 має цю проблему
  • 3 перегляди
  • Остання відповідь від 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.

Усі відповіді (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