You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix the issue with the back button JS bug on the funnel-builder: that initially breaks the campaign dropdown (on the right side column) of the homepage table - whenever you hit the back button from the FB to the homepage. If you refresh the page it fixes it, so we might force a refresh once we hit the back button
The Navbar issue: (because of Shopify API limitations) the navbar cannot properly highlight the selected page's nav-bar button, when the navbar's code is abstracted out into a Partial. Because of this, we had to manually copy the code for the navbar onto the header of each page. So whenever its modified, every page with a navbar needs to get modified and updated as well. So:
We need to either sync all the various navbar code to make sure they all match, and verify this is done correctly before release
Or we need to find a solution to this issue, and fix the problem so we can place it back into a partial. This NEEDS to happen
Fix the asset craziness in application.html.erb and embedded.html.erb in the layouts folder. One is using application.js which implements the jquery ruby gem (no idea which version), but then underneath the call (in application.html.erb) to include application.js, we re-declare a different jquery lib from a CDN.
We need to move all the Javascript tags to external libs, into the application.js file, and use the require tag to call them properly.
We need to figure out which version of JQuery is required, and remove the other ones that are loaded from Gems. Then remove those Gems, and stick with the JQuery libs from CDN that are the actual jquery versions we need for various other javascript libraries.
Clean up application.html.erb, embedded.html.erb and application.js
The text was updated successfully, but these errors were encountered:
The Navbar issue: (because of Shopify API limitations) the navbar cannot properly highlight the selected page's nav-bar button, when the navbar's code is abstracted out into a Partial. Because of this, we had to manually copy the code for the navbar onto the header of each page. So whenever its modified, every page with a navbar needs to get modified and updated as well. So:
Fix the asset craziness in application.html.erb and embedded.html.erb in the layouts folder. One is using application.js which implements the jquery ruby gem (no idea which version), but then underneath the call (in application.html.erb) to include application.js, we re-declare a different jquery lib from a CDN.
The text was updated successfully, but these errors were encountered: