changeset 2856:5591d01adf1c

Beginning page outline
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Wed, 26 Apr 2017 17:48:35 +0100
parents 6625f4ad24f4
children 80a3b693b3f6
files test_create.html test_create/style.css test_create/test_core.js
diffstat 3 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/test_create.html	Wed Apr 26 17:43:52 2017 +0100
+++ b/test_create.html	Wed Apr 26 17:48:35 2017 +0100
@@ -338,6 +338,9 @@
                 </div>
             </div>
         </div>
+        <div class="node pageNode" ng-controller="page" ng-repeat="page in specification.pages">
+            <h2>Page</h2>
+        </div>
         <div id="popupHolder" ng-show="popupVisible">
             <div ng-controller="introduction" class="popup" ng-show="popupVisible">
                 <div class="popupTitle" ng-switch="state">
--- a/test_create/style.css	Wed Apr 26 17:43:52 2017 +0100
+++ b/test_create/style.css	Wed Apr 26 17:48:35 2017 +0100
@@ -90,6 +90,6 @@
 #setupNode {
     background-color: rgba(255, 10, 10, 0.25);
 }
-#pageNode {
+.pageNode {
     background-color: rgba(10, 255, 10, 0.25);
 }
--- a/test_create/test_core.js	Wed Apr 26 17:43:52 2017 +0100
+++ b/test_create/test_core.js	Wed Apr 26 17:48:35 2017 +0100
@@ -203,3 +203,4 @@
         }
     }
 }]);
+AngularInterface.controller("page", ['$scope', '$element', '$window', function ($s, $e, $w) {}]);