True enough and to have any chance you are going to want something like
this:
configuration.add(JacquardConstants.XUACompatibleHeader,"IE=edge");
*public* *class* XUACompatibleHeader *implements* RequestFilter {
*private* *static* *final* String HEADER_KEY = "X-UA-Compatible";
*private* *final* String headerValue;
*public* XUACompatibleHeader(@Symbol(JacquardConstants.XUACompatibleHeader)
String headerValue) {
*this*.headerValue = headerValue;
}
*public* *boolean* service(Request request, Response response,
RequestHandler handler) *throws* IOException {
response.setHeader(HEADER_KEY, headerValue);
*return* handler.service(request, response);
}
}
On Fri, Aug 30, 2013 at 3:36 AM, Massimo Lusetti <[email protected]> wrote:
> On Fri, Aug 30, 2013 at 10:11 AM, Dimitris Zenios <
> [email protected]
> > wrote:
>
> In order for bootstrap 3 to work on internet explorer version less than 9
> > you need those two libraries.Below example was taken from bootstrap
> > website.
> >
> >
> Yes, I must say that not everything will work BTW ...
>
> --
> Massimo Lusetti
>