- Timestamp:
- 09/02/15 13:16:18 (9 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crossvalidation-2434
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Services.WebApp/3.3
- Property svn:ignore
-
old new 1 1 Bin 2 HeuristicLab.Services.WebApp-3.3.csproj.user
-
- Property svn:ignore
-
branches/crossvalidation-2434/HeuristicLab.Services.WebApp/3.3/WebApp/shared/filter/filters.js
r12546 r12931 1 (function 1 (function() { 2 2 var module = appMainPlugin.getAngularModule(); 3 3 module.filter('kbToGB', function () { -
branches/crossvalidation-2434/HeuristicLab.Services.WebApp/3.3/WebApp/shared/layout/layout.cshtml
r12514 r12931 24 24 <meta charset="utf-8" /> 25 25 <meta name="viewport" content="width=device-width, initial-scale=1"> 26 <meta http-equiv="pragma" content="no-cache" /> 26 27 <title>HeuristicLab Hive</title> 27 28 <link href="~/WebApp/HeuristicLab.ico" rel="shortcut icon" type="image/x-icon" /> 28 29 @Styles.Render("~/Bundles/Vendors/css") 29 30 @Styles.Render("~/Bundles/WebApp/css") 30 <link rel="stylesheet" type="text/css" href=" http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700">31 <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700"> 31 32 <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> 32 33 <!--[if lt IE 9]> … … 63 64 <div class="navbar-content"> 64 65 <ul class="nav navbar-nav navbar-right"> 65 @if (Request.IsAuthenticated) 66 { 66 @if (Request.IsAuthenticated) { 67 67 <li> 68 68 <span class="navbar-text">Hello @User.Identity.Name!</span> 69 69 </li> 70 70 <li> 71 <a ng-href=" " data-ng-click="logout()">Logout</a>71 <a ng-href="#" data-ng-click="logout()">Logout</a> 72 72 </li> 73 } 74 else 75 { 73 } else { 76 74 <li> 77 75 <a ng-href="#/login" data-ng-click="hideMenu()">Login</a> … … 97 95 </div> 98 96 <script type="text/javascript"> 99 $('.navbar-collapse').on('click', 'li a', function () {100 $('.navbar-collapse').collapse('hide');101 });97 $('.navbar-collapse').on('click', 'li a', function () { 98 $('.navbar-collapse').collapse('hide'); 99 }); 102 100 </script> 103 101 </body>
Note: See TracChangeset
for help on using the changeset viewer.