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
| function UserCtrl( | |
| $scope, | |
| $FB) { | |
| $scope.$watch(function() { | |
| return $FB.isLoaded() | |
| },function(value){ | |
| console.log("VALUE",value); | |
| // It needs authentication, this won't work. |
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 System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Mvc; | |
| using StackExchange.Profiling; | |
| namespace MiniProfiler.Razor { | |
| public class ProfiledRazorViewEngine : RazorViewEngine { |
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
| /* Copyright © Northwoods Software Corporation, 2008-2011. All Rights Reserved. */ | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Globalization; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Input; | |
| using System.Xml.Linq; | |
| using Northwoods.GoXam; |