Hi
I have an old project based on electron 9 and it works perfect with webkit tags especially -webkit-app-region but when I upgrade the project to use electron V 19.0.8 that tag does not work and the buttons that I used in the project can not be seen anymore.
I wonder why this happens as I expect chromium to work natively with webkit tags.
Is there any changes that I am supposed to use to enable webkit tags in newer versions of electron applications?
Thanks in advance.
I need to use the latest version of Angular material i.e version 7.x. But my current Angular version is 5.x. is it possible to update Angular material alone?
You can run the following command that updates Angular Material/CDK to the latest version:
ng update #angular/material
See the Angular Update Guide for more info.
Finally after analysis, I understood we can't update angular material to version 7.x in Angular 5 project. Angular project need to be updated to 7 to have angular material 7.x
I have a simple checkboxmenu that works great on Chrome but totally messed up on Internet Explorer 8 + I can't give up IE8 it's a customer requirement.
The following style classes are not working in the recent versions (1.3.x) of Jquery mobile. But they worked fine in earlier versions. What am I missing?
ui-corner-tr
ui-corner-tl
ui-corner-br
ui-corner-bl
There was an issue reported with regards to this on jQuery gitHub.
https://github.com/jquery/jquery-mobile/issues/5511
They say that it was removed on purpose and advise what should be used now.
I'm trying to recompile a Firefox extension that has binary components for use with Firefox 5 now that the beta is out. According to this I need to rebuild the binary components. What I can't figure out is which xulrunner to download and build against from here.
Is there a table that matches up FF versions (5, 6, 7) with code names (Beta, Central, Aurora) with Xul Runner versions (2, etc)?
Any decent guide would be great.
Update
It looks like the SDK / Mozilla version number has been changed to match Firefox's version number. Based on that my guess is now this:
Firefox 5 | Beta | XULRunner 5.0
Firefox 6 | Aurora | XULRunner 6.0
Firefox 7 | Central | XULRunner 7.0
Mozilla's wiki has a section of the Firefox page that gives the mappings you're looking for, but it only covers the already-released versions.
Another page called Releases lists upcoming versions and their codenames, but doesn't indicate the underlying XULRunner version.
It would appear that you'd want "latest-mozilla-beta" (which is listed as XULRunner 5) for now. Judging by the version numbers in the newer nightlies, it looks like the XULRunner versions are going to be shifted so that they match up with their corresponding Firefox versions.
XULRunner version numbers match the version number of the Gecko engine. Firefox 3.6 uses Gecko 1.9.2, Firefox 4 uses Gecko 2.0. It has been recently decided that Gecko version numbers should be identical to Firefox version numbers so Firefox 5 indeed uses Gecko 5.0, Firefox 6 uses Gecko 6.0 and so on. You can get XULRunner nightly builds for unreleased Gecko versions under http://ftp.mozilla.org/pub/mozilla.org/xulrunner/nightly/ (latest-mozilla-aurora, latest-mozilla-beta and latest-mozilla-central are usually the directories you will be interested in).