Changeset 12685 for stable/HeuristicLab.Services.WebApp/3.3/WebApp/plugins
- Timestamp:
- 07/08/15 14:10:49 (9 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 12583,12666
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/about/about.cshtml
r12563 r12685 27 27 </div> 28 28 <div class="panel-body"> 29 <p><strong>Support and Inquiries</strong>: <a href="mailto:support@heuristiclab.com">support@heuristiclab.com</a></p> 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 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> 31 32 <p><strong>HeuristicLab development site</strong>: <a href="App/RedirectUrl?url=http://dev.heuristiclab.com">http://dev.heuristiclab.com</a></p> … … 35 36 <span class="glyphicon glyphicon-phone-alt"></span> +43 50804 22030<br /> 36 37 <span class="glyphicon glyphicon-print"></span> +43 50804 21599<br /> 37 <span class="glyphicon glyphicon-envelope"></span> <a href="mailto:stefan.wagner@heuristiclab.com">stefan.wagner@heuristiclab.com</a><br />38 <span class="glyphicon glyphicon-envelope"></span> <a ng-click="mailToStefanWagner()">stefan.wagner(at)heuristiclab.com</a><br /> 38 39 </p> 39 40 </div> -
stable/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/about/aboutCtrl.js
r12546 r12685 1 1 (function () { 2 2 var module = appAboutPlugin.getAngularModule(); 3 module.controller('app.about.ctrl', ['$scope', function ($scope) { }]); 3 module.controller('app.about.ctrl', ['$scope', function($scope) { 4 $scope.mailToSupport = function () { 5 location.href = decryptString('U2FsdGVkX1/pCOITUzzsN36hx4sHh11FeVXkVyQ5b2KeZebFQ3KaNN8G9bKL3lU9'); 6 }; 7 8 $scope.mailToStefanWagner = function () { 9 location.href = decryptString('U2FsdGVkX1/Lzu8UFltiBl6VmBf9E0lmGna0+7o7cavCPwiCytBpSLsJoyhO9tl5hHCvJPVgsSndWdmGEuWrXw=='); 10 }; 11 }]); 4 12 })();
Note: See TracChangeset
for help on using the changeset viewer.