• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisióna4f0202d1cfc5bdfb16ed9d60216b5b9e13b4b6d (tree)
Tiempo2014-11-21 12:37:51
Autorhimatani_cafe <fumifumi@yasu...>
Commiterhimatani_cafe

Log Message

Little Modification (without tickets)

Cambiar Resumen

Diferencia incremental

--- a/zephyr/client/app/directive/navbar/navbar.directive.js
+++ b/zephyr/client/app/directive/navbar/navbar.directive.js
@@ -1,27 +1,28 @@
11 'use strict';
22
33 angular.module('zephyrApp')
4- .directive('navbar', function () {
4+.directive('navbar', function () {
55 return {
6- templateUrl: 'app/directive/navbar/navbar.html',
7- restrict: 'EA',
8- link: function (scope, element, attrs) {
9- },
10- contoroller: function($scope){
6+ templateUrl: 'app/directive/navbar/navbar.html',
7+ restrict: 'EA',
8+ link: function (scope, element, attrs) {
9+ }
10+ /*
11+ contoroller: function($scope){
1112 $scope.links = {
12- dashboard: "active",
13- command: false,
14- workspace: false,
15- activity: false
16- };
13+ dashboard: true,
14+ command: false,
15+ workspace: false,
16+ activity: false
17+ }
1718
18- $scope.activate = function(active) {
19+ $scope.activate = function(active) {
1920 $angular.forEach($scope.links, function(link) {
20- link = false;
21+ link = false;
2122 };
2223 $scope.links[active] = "active";
23- };
24- }
25-
26- };
27- });
24+ };
25+ }
26+ */
27+ }
28+});
--- a/zephyr/client/app/directive/navbar/navbar.html
+++ b/zephyr/client/app/directive/navbar/navbar.html
@@ -244,7 +244,7 @@
244244 <a ng-class="{{links.workspace}}" href="workspacePage"><i class="fa fa-table fa-fw"></i> WorkSpace</a>
245245 </li>
246246 <li>
247- <a ng-class="{{.activity}}" href="activityLogPage"><i class="fa fa-edit fa-fw"></i> Activity Log</a>
247+ <a ng-class="{{links.activity}}" href="activityLogPage"><i class="fa fa-edit fa-fw"></i> Activity Log</a>
248248 </li>
249249 </ul>
250250 </div>
--- a/zephyr/client/app/route/dashboard/dashboard.controller.js
+++ b/zephyr/client/app/route/dashboard/dashboard.controller.js
@@ -4,6 +4,6 @@ angular.module('zephyrApp')
44 .controller('RouteCtrl', function ($scope, $location, directivePath, api, modalService) {
55 $scope.navbar = directivePath.navbar;
66 //$location.path('/workspacePage');
7- console.log(api('workspace/update'));
7+ //console.log(api('workspace/update'));
88 $scope.workspaces = api('workspace/read');
99 });
--- a/zephyr/client/app/route/dashboard/dashboard.html
+++ b/zephyr/client/app/route/dashboard/dashboard.html
@@ -1,5 +1,4 @@
1-<div ng-include="navbar"></div>
2-
1+<navbar></navbar>
32 <div id="page-wrapper">
43 <div class="page-header">
54 <div class="row">
@@ -9,7 +8,6 @@
98 <!-- /.col-lg-12 -->
109 </div>
1110 <div class="row">
12- unnko
1311 </div>
1412 </div>
1513