diff options
Diffstat (limited to 'quanta/data/templates/scripts')
-rw-r--r-- | quanta/data/templates/scripts/javascript/overlib.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/data/templates/scripts/javascript/overlib.js b/quanta/data/templates/scripts/javascript/overlib.js index ed75a9ea..4ec178bd 100644 --- a/quanta/data/templates/scripts/javascript/overlib.js +++ b/quanta/data/templates/scripts/javascript/overlib.js @@ -182,7 +182,7 @@ if (typeof ol_background == 'undefined') { var ol_background = ""; } // Normal is "Close".
if (typeof ol_close == 'undefined') { var ol_close = "Close"; }
-// Default vertical tqalignment for popups.
+// Default vertical alignment for popups.
// It's best to leave RIGHT here. Other options are LEFT and CENTER.
if (typeof ol_hpos == 'undefined') { var ol_hpos = RIGHT; }
@@ -196,11 +196,11 @@ if (typeof ol_autostatus == 'undefined') { var ol_autostatus = 0; } // Default height for popup. Often best left alone.
if (typeof ol_height == 'undefined') { var ol_height = -1; }
-//Qt::Horizontal grid spacing that popups will snap to.
+// Horizontal grid spacing that popups will snap to.
// 0 makes no grid, anything else will cause a snap to that grid spacing.
if (typeof ol_snapx == 'undefined') { var ol_snapx = 0; }
-//Qt::Vertical grid spacing that popups will snap to.
+// Vertical grid spacing that popups will snap to.
// 0 makes no grid, andthing else will cause a snap to that grid spacing.
if (typeof ol_snapy == 'undefined') { var ol_snapy = 0; }
|