1 /* 2 * Copyright (C) 2010 Emweb bv, Herent, Belgium. 3 * 4 * See the LICENSE file for terms of use. 5 */ 6 7 #include "Wt/WApplication.h" 8 #include "Wt/PopupWindow.h" 9 10 #ifndef WT_DEBUG_JS 11 #include "js/PopupWindow.min.js" 12 #endif 13 14 namespace Wt { 15 loadJavaScript(WApplication * app)16void PopupWindow::loadJavaScript(WApplication *app) 17 { 18 LOAD_JAVASCRIPT(app, "js/PopupWindow.js", "PopupWindow", wtjs1); 19 } 20 21 } 22