Skip to content

Commit

Permalink
Merge branch 'RB_1.7' of git@gitproxy:glow/glow1 into RB_1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Mathews committed Oct 14, 2009
2 parents b553c6f + 0c07746 commit b0558f9
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGES
@@ -1,5 +1,13 @@
Glow Changelog

1.7.0

* glow.widgets.Autosuggest - Fixed bug that sometimes caused the suggestion list to be position off by 1 pixel
* glow.widgets.Autosuggest - Added option to turn off selection of the completed text in the input element
* glow.widgets.Mask - Fixed issue that causes IE6 to get into a resize event loop
* glow.dom - Changing method for getting document size to correct IE issue
* glow.embed - Added documentation for isSupported

1.7.0-rc1

New:
Expand Down
2 changes: 1 addition & 1 deletion build.properties
@@ -1,3 +1,3 @@
LINE=1.7
VERSION=1.7.0-rc1
VERSION=1.7.0
CSSVERSION=170
1 change: 1 addition & 0 deletions manualtests/widgets/autosuggest/index.html
Expand Up @@ -96,6 +96,7 @@ <h2>Autosuggest with minimum input length, and completion</h2>
}
},
complete: true,
selectCompletedText: false,
activeOnShow: false,
delim: " ",
theme: urlOpts.theme,
Expand Down
4 changes: 2 additions & 2 deletions src/dom/dom.js
Expand Up @@ -2100,7 +2100,7 @@
Returns NodeList
@example
// get ancestory elements for anchor elements
// get ancestor elements for anchor elements
var ancestors = glow.dom.get("a").ancestors();
*/
ancestors: function() {
Expand Down Expand Up @@ -2195,7 +2195,7 @@
@example
// Before: <div><div><p></p></div></div>
// wrap the given element
// unwrap the given element
glow.dom.get("p").unwrap();
// After: <div><p></p></div>
*/
Expand Down
3 changes: 3 additions & 0 deletions src/map.js
Expand Up @@ -158,6 +158,9 @@ gloader.map.add(
},
{
$version: "1.7.0-rc1"
},
{
$version: "1.7.0"
}
);

Expand Down
4 changes: 4 additions & 0 deletions src/widgets/editor/editor.js
Expand Up @@ -1097,11 +1097,15 @@ Idler.prototype._stop = function() {
@param (Function) [opts.onClick] Shortcut to attach an event listener that is called when the user clicks on the overlayMenu.
*/
/**
@ignore
@private
@name glow.widgets.Editor.Toolbar.OverlayMenu#menuItems
@type Array
@description Array of items that are on the overlayMenu.
*/
/**
@ignore
@private
@name glow.widgets.Editor.Toolbar.OverlayMenu#selected
@type Number
@description Indicates index value of selected menu item
Expand Down

0 comments on commit b0558f9

Please sign in to comment.