Override NG in angular Js

172 Views Asked by At

I know this question seems to be vague initially but I want to override the ng with anything else may be my name.

We can override $ of jquery,

var $j = jQuery.noConflict();

we can override other things by specifying it to variable like

var hello=$http;

And use hello as $http in the whole program.

So my simple question is can we override ng and use something else in html.

No performance issue just curious to know is there anyway to do it.

1

There are 1 best solutions below

4
On

It's a little old, but there is a solution over here: http://www.mattburkedev.com/multiple-angular-versions-on-the-same-page/

Yes it's possible. Small example using angular as something else and the orignal angular global is now in existingWindowDotAngular.

var existingWindowDotAngular = window.angular;
var angular = 'whatever';

You can't override AngularJS built-in directives. However, you can define multiple directives with the same name and have them executed against the same element. By assigning appropriate priority to your directive, you can then control whether your directive runs before or after a built-in directive.