meteor-admin
meteor-admin copied to clipboard
Windows 10 / Edge / IE not styled
I'm getting non-styled content in MS Edge browser. Anyone else seeing this?
Some parts work, like the table styles, and the drop downs (and javascript) seem to work fine, but the framework, the main nav and the main buttons are not styled. Even the font-awesome icons are working.
Must be something with mfactory:admin-lte. At the moment I'm not able to debug on IE.
This is also happening in all browsers when accessed over SSL (https).
I'm having a potentially related problem when running on an arbitrary port on a remote server. It always looks for the styles at the root domain. For example, if my app is running on meteor.example.com:8080 it will be looking for styles on meteor.example.com.
@lkozloff I have the same problem and I think it is connected to this issue: https://github.com/meteor/meteor/issues/4696
The mfactory:admin-lte (see admin-lte.js, line 124, 129) package is using Meteor.absoluteUrl() in two of its functions. The absoluteUrl() function is made for Cordova Apps but somehow is not working for standard meteor applications.
EDIT: And here is the fix for it, but not merged in the main branch: https://github.com/meteor-factory/meteor-admin-lte/pull/16