This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Newtonsoft.Json; | |
| using System; | |
| using System.Net.Http; | |
| using System.Text; | |
| namespace Teste.PV | |
| { | |
| public class Teste | |
| { | |
| public static void Main(string[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jQuery(function ($) { | |
| var view = $("[ui-view]").first(); | |
| if (!view) return; | |
| var $rootScope = angular.element(view).injector().get('$rootScope'); | |
| $rootScope.$on('$stateChangeStart', function (event, toState, toParams, fromState, fromParams) { | |
| console.log('$stateChangeStart to ' + toState.name + '- fired when the transition begins. toState,toParams : \n', toState, toParams); | |
| }); |
NewerOlder