From c677a8efe4a32efec7c714f15c304fc7f34f8c27 Mon Sep 17 00:00:00 2001 From: Neil Fraser Date: Fri, 14 Oct 2016 02:39:10 -0700 Subject: [PATCH] Fix two incorrect URLs in Closure dialog. --- demos/blockfactory/app_controller.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/demos/blockfactory/app_controller.js b/demos/blockfactory/app_controller.js index c82d525c7..91ae10249 100644 --- a/demos/blockfactory/app_controller.js +++ b/demos/blockfactory/app_controller.js @@ -633,7 +633,7 @@ AppController.prototype.confirmLeavePage = function() { * Initialize Blockly and layout. Called on page load. */ AppController.prototype.init = function() { - // Blockly factory has a dependency on bits of Closure that core Blockly + // Block Factory has a dependency on bits of Closure that core Blockly // doesn't have. When you run this from file:// without a copy of Closure, // it breaks it non-obvious ways. Warning about this for now until the // dependency is broken. @@ -641,9 +641,9 @@ AppController.prototype.init = function() { if (!window.goog.dom.xml) { alert('Sorry: Closure dependency not found. We are working on removing ' + 'this dependency. In the meantime, you can use our hosted demo\n ' + - 'https://blockly-demo.appspot.com/static/demos/blocklyfactory/index.html' + + 'https://blockly-demo.appspot.com/static/demos/blockfactory/index.html' + '\nor use these instructions to continue running locally:\n' + - 'https:developers.google.com/blockly/guides/modify/web/closure'); + 'https://developers.google.com/blockly/guides/modify/web/closure'); return; }