Discussion on Xenon - Bootstrap Admin Theme with AngularJS

Discussion on Xenon - Bootstrap Admin Theme with AngularJS

Cart 3,090 sales
Well Documented

Laborator supports this item

Supported

This author's response time can be up to 1 business day.

520 comments found.

Hi can i migrate project to apache cordova project? Is there any best practice for converting mobile project? What do you suggest for converting?

Hi onurdogan85

Actually we do not have any preferred platform to work set up the Xenon project, it comes in plain html and javascript files so its up to users to set up the environment for developing their product with Xenon.

One similar issue has been reported by tberjamin user and we were not able to help him to setup Xenon with Eclipse. We are not sure how these apps works.

Kind regards


Arlind

Are you planning an update?

Hi there,

We are planning an update for the theme but right now we are updating other themes, as soon as we finish with them we will get back to Xenon.

Make sure you have ticked the “Get updates by e-mail”, so you will be notified when the update is here.

Kind Regards,
Art

Hi baskinvolkan

Yes we are going to release new update for Xenon later because currently we are in the process of updating three of our themes: Kalium, Oxygen and Aurum. Right then we are going to provide an update for Xenon including latest Bootstrap and other plugin updates.


Arlind

“Great admin theme … but most of all, awesome support as well. We’ve been able to solve a tough problem I encountered using the theme. It took us a few days to figure it all out but eventually we cracked it. Strongly recommended.”

  Xenon received a 5 star rating from sLesage for Customer Support.

Are you using Xenon too? Don’t forget to rate it!.

Hi how can i use notifications with angularjs?

i wanna use notifications in angular controller in any functions. Could you send me any example?

Hi onurdogan85

To use notifications you need to import “toastr” resource defined in app.js an example of including toastr notifications inside a page is here:

...
state('app.dashboard-variant-1', {
    url: '/dashboard-variant-1',
    templateUrl: appHelper.templatePath('dashboards/variant-1'),
    resolve: {
        resources: function($ocLazyLoad){
            return $ocLazyLoad.load([
                ASSETS.extra.toastr,
            ]);
        }
    }
})
...

Then creating a notification is simple:

toastr.info('Are you the 6 fingered man?');

See this page to learn more about notifications types:

http://themes.laborator.co/xenon/angular/#/app/extra-notifications

Hopefully this will help you.


Arlind

Thanks for your support. Ok it works. how can i configure any 3 part library under like ASSETS.extra.my3partylibrary ? Thanks

Hi onurdogan85

To create new resource and import open app.js

In ASSETS add your script for example:

app.constant('ASSETS', {
//... code before

    'extra': {
        'tocify': appHelper.assetPath('js/tocify/jquery.tocify.min.js'),

        'toastr': appHelper.assetPath('js/toastr/toastr.min.js'),

        'fullCalendar': [
            appHelper.assetPath('js/fullcalendar/fullcalendar.min.css'),
            appHelper.assetPath('js/fullcalendar/fullcalendar.min.js'),
        ],

        'cropper': [
            appHelper.assetPath('js/cropper/cropper.min.js'),
            appHelper.assetPath('js/cropper/cropper.min.css'),
        ],

        // Your library here
        // add array if there are more than one script
        my3partylibrary: [appHelper.assetPath('js/thirdparty/file.js')]
});

Then to incorporate this resource in your pages use the constant:

ASSETS.extra.my3partylibrary for example:
state('app.my-page', {
    url: '/my-page',
    templateUrl: appHelper.templatePath('your-template-for-my-page.html'),
    resolve: {
        resources: function($ocLazyLoad){
            return $ocLazyLoad.load(ASSETS.extra.my3partylibrary);
        },
    }
})

This should help you to create the idea.


Arlind

Hi, for the collapsed Sidebar, dropdown menu cannot function for mobile version. http://www.qinetics.net/panel/layout-collapsed-sidebar.html

Hi sheling

I have fixed the following issue, so here is the fix for you:

http://drops.laborator.co/15aTD+

Replace the file in assets/js/

Best regards

Arlind

Hi, after i replace the js, the menu can open well. But when i wan close it, it will jump to other page. Please have a look on vide below:

https://www.dropbox.com/s/izhy6xddpwyvsmw/ScreenCapture_6-1-2016%2011.26.09%20AM.wmv?dl=0

Hi Sheling

Sorry for the delay of the answer because we have had large volume of tickets during this period.

Can you please try this one:

http://drops.laborator.co/1j8gR+

Download and replace in assets/js/ file, this should solve your issue.

Arlind

Hi Xenon Team,

This package/library is causing build issues in Eclipse (STS): assets/js/devexpress-web-14.1

Are there any known issues with working on the Xenon Angular project in Eclipse? We are getting ‘out of memory issues’ in Eclipse when building the project.

Thanks, TJ

Hi TJ

We are not aware of this issue and was never posted before so I think that there must be something that Eclipse cannot parse or something like that.

Can you please remove anything related to * devexpress-web-14.1* in javascript files (app.js) and see if the problem is solved?


Arlind

Hi Xenon,

I have another inquiry from my developer below. Please help or let me know if you need further info on the issue.

Thanks, TJ

Hi TJ,

Here’s the draft mail for the Xenon guys.

Thanks!

Regards, Ben

====

Hi -,

I’m working on adding/implementing route authorization and security in Angular. I added new controller and service modules. Unfortunately, my controller can’t access the functions in my service module. I’ve already added the new modules in the app.js and index.html. Are there other files that I need to update? I’ve also tried adding a .controller and a .service in the controller.js and service.js, respectively. But it seems that my new service is not being seen.

Please advise.

Thanks!

Regards, Ben

Hi Ben

Sample service and controllers are defined in:

app/js/controllers.js
app/js/services.js

Developer can follow the way of current services and controllers are implemented.

For example if you want to implement a service simply open services.js and in the end of file (before semicolon) add this code:

service('$myService', function() {
})

The same applied to controllers and directives.

If you have other queries feel free to ask :)


Arlind

Hi Xenon Team,

My developer is now having issues building Xenon Angular in Eclipse (STS). It gets stuck while building at 5%. This is where the build process is getting stuck: {source_folder}/webapp/assets/js

We use Eclipse as IDE for development and hooking the Xenon pages to the REST services. I hope you can get back to us as soon as possible.

The project opens fine in Brackets though.

Thanks, TJ

Hi tberjamin

As I’ve mentioned in the previous thread it seems that Eclipse works differently on parsing a project, so remove the DX charts from importing in app.js and see if that will solve your issue. For debugging purpose I suggest you to remove importing scripts in app.js just to isolate the problem. Then get back and see if that solves your problem.


Arlind

Hi Xenon Team,

My developer is stil having issues. Please see his note below:

Hi TJ,

I’m still getting errors during injection. Can you please send the following mail to them again? Thanks!

=====

Hi Arlind,

I’m getting the error below:

00:00:55.204 “Error: [$injector:unpr] http://errors.angularjs.org/1.2.26/$injector/unpr?p0=<ui-view class=”main-content-view ng-scope”>copeProvider%20%3C-%20%24scope%20%3C-%20%24clientRegistration C/<@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:6:450 gc/l.$injector<@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:36:202 c@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:34:305 gc/p.$injector<@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:36:268 c@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:34:305 d@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:35:1 f/<.instantiate@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:35:165 gc/l.$provide.service</<@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:35:433 d@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:35:34 gc/p.$injector<@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:36:286 c@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:34:305 d@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:35:1 f/<.instantiate@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:35:165 Pd/this.$get</<@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:67:417 N/<@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:54:25 r@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:7:390 N@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:53:1 g@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:47:256 N@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:54:313 g@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:47:256 z/<@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:46:377 v/<.compile/<@http://localhost:8080/oauth-admin-web/static/app/js/angular-ui/angular-ui-router.min.js:7:17755 N@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:54:372 g@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:47:256 z/<@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:46:377 j@http://localhost:8080/oauth-admin-web/static/app/js/angular-ui/angular-ui-router.min.js:7:16990 u/j.compile/</<@http://localhost:8080/oauth-admin-web/static/app/js/angular-ui/angular-ui-router.min.js:7:17216 Zd/this.$get</k.prototype.$broadcast@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:114:322 r/u.transitionTo/u.transition<@http://localhost:8080/oauth-admin-web/static/app/js/angular-ui/angular-ui-router.min.js:7:13178 Ae/e/l.promise.then/F@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:100:178 Ae/f/<.then/<@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:101:350 Zd/this.$get</k.prototype.$eval@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:112:64 Zd/this.$get</k.prototype.$digest@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:109:160 Zd/this.$get</k.prototype.$apply@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:112:396 h@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:72:452 u@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:77:463 ye/</z.onreadystatechange@http://localhost:8080/oauth-admin-web/static/app/js/angular/angular.min.js:79:24 “1 angular.min.js:92:296 e/<() angular.min.js:92 Rd/this.$get</<() angular.min.js:68 N() angular.min.js:54 g() angular.min.js:47 z/<() angular.min.js:46 j() angular-ui-router.min.js:7 u/j.compile/</<() angular-ui-router.min.js:7 Zd/this.$get</k.prototype.$broadcast() angular.min.js:114 r/u.transitionTo/u.transition<() angular-ui-router.min.js:7 Ae/e/l.promise.then/F() angular.min.js:100 Ae/f/<.then/<() angular.min.js:101 Zd/this.$get</k.prototype.$eval() angular.min.js:112 Zd/this.$get</k.prototype.$digest() angular.min.js:109 Zd/this.$get</k.prototype.$apply() angular.min.js:112 h() angular.min.js:72 u() angular.min.js:77 ye/</z.onreadystatechange() angular.min.js:79

It seems that the new controller is not being injected properly. Do I need to update the min files after adding new controller/services? If so, what tool do I need to use for this?

Here are some controller definitions I tried (I added one of these at the end of the controller.js, before the semi-colon):

.controller(‘ClientRegistrationCtrl’, [’$scope’, ’$http’, ’$q’, ’$filter’, ’$clientRegistration’, function($scope, $http, $q, $filter, $clientRegistration) { … }]);

.controller(‘ClientRegistrationCtrl’, function($scope, $http, $q, $filter, $clientRegistration) { … });

Thanks!

Regards, Ben

Hi Ben

Please note that when you create a controllers, the parameters you require must be included in app.js module dependencies as shown here:

http://drops.laborator.co/EFYz

If you try to remove those parameters ’$scope’, ’$http’, ’$q’, ’$filter’, ’$clientRegistration' see if it works?

If so, then you are missing any module inclusion in app.js

In Xenon documentation Topic 6.1 will describe how to include module dependencies and dependency loading in 6.4

Hopefully this will help you.


Arlind

Hi there. Any idea about schedule for next release? thanks

Hi jcholtsf,

The next update of Xenon will be released by the end of this year. Thank you for your interest.

Kind Regards,
—Ylli

No one option from timepicker is working. Even the default options from xenon-custon.js are not working. What happened? how can I fix this?

Hi celohill

If you have updated jQuery that may affect the time picker plugin, for more please open Inspect Element and check console for possible errors then send me the screenshot of errors.


Arlind

Hi,

I was wondering if there is some way to have an options select for the language behave and display as what you currently have in the theme. I will add what I currently have so you can see what I mean

<ul class="user-info-menu left-links list-inline list-unstyled"> <li class="hidden-sm hidden-xs" style="min-height: 75px;"> <a href="#" data-toggle="sidebar"> <i class="fa-bars" /> </a> </li> <li class="hidden-sm hidden-xs" style="min-height: 75px;"> <form action="/i18n/setlang/" method="post" style="display: inline;"><input type="hidden" name="csrfmiddlewaretoken" value="someobscurevalue"> <div style="display: inline;"> <select name="language" onchange="javascript:form.submit()"> <option value="nl" selected="selected">Nederlands</option> <option value="en">Engels</option> </select> </div> </form> </li> <!-- Added in v1.2 --> <li class="dropdown hover-line language-switcher" style="min-height: 75px;"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> <img src="/static/assets/images/flags/flag-nl.png" alt="flag-nl" /> Nederlands </a> <ul class="dropdown-menu languages"> <li> <a href="#"> <img src="/static/assets/images/flags/flag-uk.png" alt="flag-uk" /> English </a> </li> <li class="active"> <a href="#"> <img src="/static/assets/images/flags/flag-nl.png" alt="flag-nl" /> Nederlands </a> </li> </ul> </li> </ul>

I somehow have to use the form setup for me to be able to change language in Django. And now I was wondering if there is some way to make it display as what you have in your language-switcher. Is that at all possible ?

Hi,

This time the problem was on my side. I wasn’t getting any errors, except that it worked on a desktop browser and in the simulator, but not on the physical device. Apparently setting the language to UK was my problem now, it should be EN for english. Strange that it worked on everything except physical iOS devices tough.

The change to the CSS is working as expected now … all other things in that navigation bar seem to be working. I did make sure to add the mobile-is-visible to the nav class. That way it gets displayed on mobile devices without having to change something to the CSS.

Thanks a ton for helping here … seems like together we’ve been able to crack this!

Hi sLesage,

Glad to hear that the problem is finally solved :)

P.S: It would help us a lot if you could rate Xenon on themeforest from your Downloads tab, (if you don’t know how, just open this link) Thank you :)

Kind Regards,
Arlind

Done!

I’m really enjoying this theme, nice widgets and generally well put together.

I’m struggling at the minute, I’m loading things after the DOM fine with stuff I’ve created and adapted, but using widgets – specifically xe-progress-counter, if I load them via jquery.load onto a page, the counter does not animate.

Is there something simple I’m missing here?

Cheers and thanks for a great theme

EDIT – not using Angular

Hi StreetlyAcademy

Thank you for your kind words, I am really happy to hear them.

I guess you are missing a crucial file for executing Widgets, make sure you are including this JavaScript file in that page where you use xe-progress-counter:

assets/js/xenon-widgets.js

Best regards


Arlind

Hi!, First of all congrats on a great template.

I need to upgrade angularJS version to a version 1.4.x version. I would prefer to upgrade to current latest (1.4.7).

What would be your recommended way to achieve this?

Thanks,

Santiago

Hi Santiago

Thank you for your kind comments.

After releasing Xenon with current Angular version on it 1.2.26, I’ve not tested it if it works with newer Angular versions, so I am not sure if its going to work or not. So I don’t have any exact answer whether you should move to 1.4.x or stay in 1.2.x, but you can keep the old Angular files and test with new angular files to see if it works for you, as currently we are in the process of updating our older theme Neon, then we will take a look if we can update Xenon to latest angular version or not.

I hope my answer makes sense to you.


Arlind

Hi

I noticed two comments below:

1) “We are currently working on all theme updates, we will release the new update soon (in the upcoming weeks).”

2) “We have not tested it on AngularJS newer versions, it has been built on AngularJS v1.2.26”

My questions: Are you releasing a version tested on the latest Angular version? If so, approx. when do you expect it?

Thanks, Tor

Hi there,

We are not planning to update the theme to the latest Angular version, we will update the theme overall and include the old Angular version too.

Kind Regards,
Art

I can’t download the purchase. It simply fails. Please can you give me access to the theme I purchased.

Hi nblackburn93,

Can you please try to be very specific about the problem and explain it more to us, in this way we can easily understand you and give you the proper answer :)

Kind Regards,
—Ylli

I found a nice solution that also counts up when data is updated via async webservice. I postet the answer here: http://stackoverflow.com/questions/27521271/angularjs-use-a-variable-into-div/33143657#33143657 Cheers!

Hi RaymasterX

I was not aware of this so I have replaced the existing code with yours. So thank you so much for your suggestion!

Cheers


Arlind

Thank you! enjoy.

Hi there. I have the same problem, also I tried this snippetm above. The answer above just help partial – it doesn’t throw the NaN Exception. The Problem from my understanding is, that the script runs only once after the page is rendered in “sm.fullyEnterViewport”. But then the controller loads data async from a webservice. Then the Value data-to is updated – but the counter never runs.

The HTML above is incorrect, because the value is directly displayed and not counting up, should be:

0 Starter

We need to find a way that the counter runs from data-from to data-to when the data-to is updated later from a webservice. when you say sm.destroy, the function is gone, right? Do you have a solution for this problem?

The only way at them moment is to wait synchronous until the data is here, and then continue loading – but that’S a bad design. Greets, Helmut P.S. I love that theme – helps a lot

I see that this is related to the previous thread opened by you so I guess that solved your issue with this.


Arlind

Bootstrap is missing on the live preview.

Hi leogariba,

Thank you very much for reporting this, we will try to fix this ASAP.

Kind Regards,
—Ylli

Hi,

I cannot get any chart to work at all, both html and Angular versions, even with moving the project to localhost. The error I got from the console are …

Error: [$compile:tplrt] http://errors.angularjs.org/1.2.26/$compile/tplrt?p0=sidebarProfile&p1=app%2Ftpls%2Flayout%2Fsidebar-profile.html

and

TypeError: $(...).dxSparkline is not a function

Please help. Thank you.

Hi

You must import slider library from the instructions given in the xenon dashboard. http://drops.laborator.co/1daq1

The second error, just open directives.js in app/js/directives.js and set false value on line 51, as shown in the image below:

http://drops.laborator.co/Dxvp

I hope this helps you.


Arlind

Additional information:

Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2018953%3B%20oldVal%3A%2018952%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2018964%3B%20oldVal%3A%2018963%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2018975%3B%20oldVal%3A%2018974%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2018986%3B%20oldVal%3A%2018985%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2018997%3B%20oldVal%3A%2018996%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019008%3B%20oldVal%3A%2019007%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019019%3B%20oldVal%3A%2019018%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019030%3B%20oldVal%3A%2019029%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019041%3B%20oldVal%3A%2019040%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019052%3B%20oldVal%3A%2019051%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019063%3B%20oldVal%3A%2019062%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019074%3B%20oldVal%3A%2019073%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019085%3B%20oldVal%3A%2019084%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019096%3B%20oldVal%3A%2019095%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019107%3B%20oldVal%3A%2019106%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019118%3B%20oldVal%3A%2019117%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019129%3B%20oldVal%3A%2019128%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019140%3B%20oldVal%3A%2019139%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019151%3B%20oldVal%3A%2019150%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019162%3B%20oldVal%3A%2019161%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019173%3B%20oldVal%3A%2019172%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019184%3B%20oldVal%3A%2019183%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019195%3B%20oldVal%3A%2019194%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019206%3B%20oldVal%3A%2019205%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019217%3B%20oldVal%3A%2019216%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019228%3B%20oldVal%3A%2019227%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019239%3B%20oldVal%3A%2019238%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019250%3B%20oldVal%3A%2019249%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019261%3B%20oldVal%3A%2019260%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019272%3B%20oldVal%3A%2019271%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019283%3B%20oldVal%3A%2019282%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:41:235(anonymous function) angular.js:10072a.$get angular.js:7364a.$get.k.$digest angular.js:12517(anonymous function) angular.js:12740e angular.js:4397(anonymous function) angular.js:4705 angular.js:36 Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.26/$rootScope/infdig?p0=10&p1=%5B%5B%22fn%3…D!1%3Breturn%20q%7D%3B%20newVal%3A%2019294%3B%20oldVal%3A%2019293%22%5D%5D(anonymous function) angular.js:36a.$get.k.$digest angular.js:12580(anonymous function) angular.js:12740e angular.js:4397(anonymous function) @ angular.js:4705 angular.js:10072 Error: Failed to execute ‘pushState’ on ‘History’: A history state object with URL ‘file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/index.html#/app/dashboard-variant-1’ cannot be created in a document with origin ‘null’. at Error (native) at te.k.url (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:39:254) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:91:266 at k.a.$get.k.$eval (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:68) at k.a.$get.k.$digest (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:109:168) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:112:179 at e (file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xenon-files/angular/app/js/angular/angular.min.js:37:497) at file:///C:/Users/TJ/Documents/Web%20Designs/Xenon/xen

Hi

You must open Xenon angular files in web server (localhost/web host) because if you open index.html directly it cannot be executed.


Arlind

I just purchase Xenon and downloaded it, but I cannon make the AngularJS version work in Chrome out of the box. Works fine in Firefox though. My Chrome version is:

Version 45.0.2454.101 m

Please help.

Hi tberjamin

You must load Xenon angular files in web server (localhost/web host) because if you open index.html directly it cannot be executed.


Arlind

Thank you. I’ve sent this information to my developer and it helped. Can you also please send me the license information for this theme? Can we use this later on in a production environment?

Hi tberjamin,

You can read more about License Details on this link that is provided from Envato :)

Kind Regards,
—Ylli

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey