Explorar el Código

minor changes to the loading page

Nicolas Petton hace 11 años
padre
commit
4d47f4f7dc
Se han modificado 1 ficheros con 4 adiciones y 5 borrados
  1. 4 5
      overview/2-loading-amber.md

+ 4 - 5
overview/2-loading-amber.md

@@ -3,6 +3,7 @@ title: Loading Amber
 layout: default
 permalink: "loading-amber.html"
 parent: Overview
+next: "/overview/loading-packages.html"
 ---
 
 In this section we will learn how setup an `index.html` page to load
@@ -70,10 +71,6 @@ being `amber/devel`.
 
 The last modification we make to the `index.html` page is to add a line after Amber's initialization to automatically popup Helios, its integrated development environment.
 
-<p class="warning">
-Most web browser will block popups by default. You may need to authorize the Helios popup.
-</p>
-
 Here is our final version of `index.html`.
 
 
@@ -92,6 +89,8 @@ Here is our final version of `index.html`.
         <script type='text/javascript'>
           require(['amber/devel'], function (amber) {
             amber.initialize();
+
+            // Popup Helios
             amber.popupHelios();
           });
         </script>
@@ -102,5 +101,5 @@ Here is our final version of `index.html`.
 {% endhighlight %}
 
 <p class="warning">
-This page is unfinished.
+Most web browser will block popups by default. You may need to authorize the Helios popup.
 </p>