From 01dba37090297135fa9457dbaf91b012d89a4829 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Thu, 29 Oct 2015 23:03:28 -0400 Subject: [PATCH] change var "nw" to "gui" in the dialogs --- pd/nw/dialog_canvas.html | 4 ++-- pd/nw/dialog_font.html | 4 ++-- pd/nw/dialog_gatom.html | 4 ++-- pd/nw/dialog_iemgui.html | 4 ++-- pd/nw/dialog_prefs.html | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pd/nw/dialog_canvas.html b/pd/nw/dialog_canvas.html index b57efc320..6e3559ae4 100644 --- a/pd/nw/dialog_canvas.html +++ b/pd/nw/dialog_canvas.html @@ -278,7 +278,7 @@ <script> "use strict"; -var nw = require("nw.gui"); +var gui = require("nw.gui"); var pdgui = require("./pdgui.js"); // For translations @@ -743,7 +743,7 @@ console.log("fungyfungyfungyfungy"); function add_events(name) { // closing the Window - nw.Window.get().on("close", function() { + gui.Window.get().on("close", function() { // this needs to do whatever the "cancel" button does //pdgui.pdsend(name + " menuclose 0"); //cancel(); diff --git a/pd/nw/dialog_font.html b/pd/nw/dialog_font.html index e05806142..a61b9634e 100644 --- a/pd/nw/dialog_font.html +++ b/pd/nw/dialog_font.html @@ -94,7 +94,7 @@ <script> "use strict"; -var nw = require("nw.gui"); +var gui = require("nw.gui"); var pdgui = require("./pdgui.js"); // For translations @@ -181,7 +181,7 @@ function populate_form(attrs) { function add_events(name) { // closing the Window - nw.Window.get().on("close", function() { + gui.Window.get().on("close", function() { // this needs to do whatever the "cancel" button does //pdgui.pdsend(name, "menuclose 0"); //cancel(); diff --git a/pd/nw/dialog_gatom.html b/pd/nw/dialog_gatom.html index 9382d293a..d76eeb2b5 100644 --- a/pd/nw/dialog_gatom.html +++ b/pd/nw/dialog_gatom.html @@ -137,7 +137,7 @@ <script> "use strict"; -var nw = require("nw.gui"); +var gui = require("nw.gui"); var pdgui = require("./pdgui.js"); // For translations @@ -270,7 +270,7 @@ function populate_form(attributes) { function add_events(name) { // closing the Window - nw.Window.get().on("close", function() { + gui.Window.get().on("close", function() { // this needs to do whatever the "cancel" button does //pdgui.pdsend(name, "menuclose 0"); //cancel(); diff --git a/pd/nw/dialog_iemgui.html b/pd/nw/dialog_iemgui.html index 93a8b9ac4..67e956ec8 100644 --- a/pd/nw/dialog_iemgui.html +++ b/pd/nw/dialog_iemgui.html @@ -299,7 +299,7 @@ <script> "use strict"; -var nw = require("nw.gui"); +var gui = require("nw.gui"); var pdgui = require("./pdgui.js"); // For translations @@ -555,7 +555,7 @@ function populate_form(attr_object) { function add_events(name) { // closing the Window - nw.Window.get().on("close", function() { + gui.Window.get().on("close", function() { // this needs to do whatever the "cancel" button does //pdgui.pdsend(name, "menuclose 0"); //cancel(); diff --git a/pd/nw/dialog_prefs.html b/pd/nw/dialog_prefs.html index 34e5a835b..f63f7d98b 100644 --- a/pd/nw/dialog_prefs.html +++ b/pd/nw/dialog_prefs.html @@ -254,7 +254,7 @@ </div> <script> "use strict"; -var nw = require("nw.gui"); +var gui = require("nw.gui"); var pdgui = require("./pdgui.js"); // For translations @@ -633,7 +633,7 @@ function add_events(name) { // let's handle some events for this window... // closing the Window - nw.Window.get().on("close", function() { + gui.Window.get().on("close", function() { // this needs to do whatever the "cancel" button does pdgui.remove_dialogwin(pd_object_callback); this.close(true); -- GitLab