YAFLogo

BWG
  • BWG
  • 100% (Exalted)
  • YAF Lover Topic Starter
9 years ago
I've just upgraded to YAF 2.1.2 and noticed it is uses JQuery 2.1.1. This version of JQuery doesn't work with IE8 so as far as I can see YAF no longer supports IE8.

Is this right and was the decision to ditch IE8 support intentional?

BWG

Sponsor
tha_watcha
  • tha_watcha
  • 100% (Exalted)
  • YAF.NET Project Lead 🤴 YAF Version: 4.0.0 rc 2
9 years ago
That is incorrect, yaf 2.1.2 ships with the 1.xx branch. The next release will include jquery 2.xx (which is already in the source repository).

But if you still need legacy support for older browser, you still can use any jquery version you want if it is atleast version 1.7, you only have to override it from the app.config.

BWG
  • BWG
  • 100% (Exalted)
  • YAF Lover Topic Starter
9 years ago

That is incorrect, yaf 2.1.2 ships with the 1.xx branch. The next release will include jquery 2.xx (which is already in the source repository).

But if you still need legacy support for older browser, you still can use any jquery version you want if it is atleast version 1.7, you only have to override it from the app.config.

Originally Posted by: tha_watcha 

Sorry, my mistake. I should have made clear I was referring to the latest version of the source code which is using:

//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js

When compiled this still displays as v2.1.2 in the Version Check.

tha_watcha
  • tha_watcha
  • 100% (Exalted)
  • YAF.NET Project Lead 🤴 YAF Version: 4.0.0 rc 2
9 years ago

That is incorrect, yaf 2.1.2 ships with the 1.xx branch. The next release will include jquery 2.xx (which is already in the source repository).

But if you still need legacy support for older browser, you still can use any jquery version you want if it is atleast version 1.7, you only have to override it from the app.config.

Originally Posted by: BWG 

Sorry, my mistake. I should have made clear I was referring to the latest version of the source code which is using:

//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js

When compiled this still displays as v2.1.2 in the Version Check.

Originally Posted by: tha_watcha 

Simply use...

<add key="YAF.JQueryOverrideFile" value="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" />

to override the default one.