Seeking assistance with migrating AngularJS from version 1.0.8 to 1.2 and encountering issues with a JavaScript slider that is no longer functioning post-migration...
After upgrading to 1.2, added the angular-route.js library and injected 'ngRoute' into my module, which is causing conflicts with the existing pure JS slider...
Provided below are Plunker examples showcasing the problem: Version 1.0.8: http://plnkr.co/edit/l4k3vgbqzHIpCTlzcwr6?p=preview
var app = angular.module("calculatorApplication", []).config(function ($routeProvider) {
Version 1.2: http://plnkr.co/edit/qhf1YjlXMFwq0X8TgT21?p=preview
var app = angular.module("calculatorApplication", ['ngRoute']).config(function ($routeProvider) {
Appreciate any suggestions or solutions to this issue. Thank you.