- Timestamp:
- 09/02/15 13:16:18 (9 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 5 edited
- 1 copied
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/plugins/about/about.cshtml
r12583 r12931 28 28 <div class="panel-body"> 29 29 <p><strong>Support</strong>: <a href="App/RedirectUrl?url=http://groups.google.com/group/heuristiclab">HeuristicLab Google Group</a></p> 30 <p><strong>Inquiries</strong>: <a ng-click="mailToSupport()">support(at)heuristiclab.com</a></p>30 <p><strong>Inquiries</strong>: <a class="cursor-pointer" ng-click="mailToSupport()">support(at)heuristiclab.com</a></p> 31 31 <p><strong>Heuristic and Evolutionary Algorithms Laboratory (HEAL)</strong>: <a href="App/RedirectUrl?url=http://heal.heuristiclab.com">http://heal.heuristiclab.com</a></p> 32 32 <p><strong>HeuristicLab development site</strong>: <a href="App/RedirectUrl?url=http://dev.heuristiclab.com">http://dev.heuristiclab.com</a></p> … … 36 36 <span class="glyphicon glyphicon-phone-alt"></span> +43 50804 22030<br /> 37 37 <span class="glyphicon glyphicon-print"></span> +43 50804 21599<br /> 38 <span class="glyphicon glyphicon-envelope"></span> <a ng-click="mailToStefanWagner()">stefan.wagner(at)heuristiclab.com</a><br />38 <span class="glyphicon glyphicon-envelope"></span> <a class="cursor-pointer" ng-click="mailToStefanWagner()">stefan.wagner(at)heuristiclab.com</a><br /> 39 39 </p> 40 40 </div> -
branches/crossvalidation-2434/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/login/login.cshtml
r12428 r12931 14 14 <div class="input-group"> 15 15 <span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span> 16 <input type="text" class="form-control" name="Username" placeholder="User "16 <input type="text" class="form-control" name="Username" placeholder="Username" 17 17 ng-model="user.Username"> 18 18 </div> -
branches/crossvalidation-2434/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/plugins/plugins.cshtml
r12557 r12931 21 21 <th>#</th> 22 22 <th ts-criteria="Name">Name</th> 23 <th ts-criteria 23 <th ts-criteria="AssemblyName">Assembly</th> 24 24 <th ts-criteria="LastReload">Last reload</th> 25 <th >Status</th>25 <th class="text-center">Status</th> 26 26 <th></th> 27 27 </tr> … … 33 33 <td>{{plugin.AssemblyName}}</td> 34 34 <td>{{plugin.LastReload}}</td> 35 <td >35 <td class="text-center"> 36 36 <span ng-hide="plugin.Exception" class="glyphicon glyphicon glyphicon-ok" style="color: green"></span> 37 37 <span ng-show="plugin.Exception" class="glyphicon glyphicon glyphicon-remove" style="color: darkred" … … 39 39 </td> 40 40 <td> 41 <a ng-href="" data-ng-click="reloadPlugin(plugin.Name)">Reload</a>41 <a ng-href="" class="cursor-pointer" data-ng-click="reloadPlugin(plugin.Name)">Reload</a> 42 42 </td> 43 43 </tr>
Note: See TracChangeset
for help on using the changeset viewer.