Skip to content

Commit

Permalink
Fix #843
Browse files Browse the repository at this point in the history
Revert accidental changes to doc comments.
  • Loading branch information
xirzec committed Jan 5, 2015
1 parent d233558 commit 1acb590
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/js/WinJS/Controls/ListView.js
Expand Up @@ -518,7 +518,7 @@ define([
}
},

/// <field type="String" oamOptionsDatatype="_UI.TapBehavior" locid="WinJS.UI.ListView.tapBehavior" helpKeyword="WinJS.UI.ListView.tapBehavior">
/// <field type="String" oamOptionsDatatype="WinJS.UI.TapBehavior" locid="WinJS.UI.ListView.tapBehavior" helpKeyword="WinJS.UI.ListView.tapBehavior">
/// Gets or sets how the ListView reacts when the user taps or clicks an item.
/// The tap or click can invoke the item, select it and invoke it, or have no
/// effect.
Expand Down
12 changes: 6 additions & 6 deletions src/js/WinJS/Controls/ListView/_Layouts.js
Expand Up @@ -228,7 +228,7 @@ define([
};
}

// Signal ListView's own measurement operation.
// Signal ListView's own measurement operation.
// ListView always needs an opportunity to measure, even if layout cannot.
site.readyToMeasure();

Expand All @@ -241,14 +241,14 @@ define([

_Base.Namespace._moduleDefine(exports, "WinJS.UI", {
Layout: _Base.Class.define(function Layout_ctor() {
/// <signature helpKeyword="exports.Layout.Layout">
/// <summary locid="exports.Layout.constructor">
/// <signature helpKeyword="WinJS.UI.Layout">
/// <summary locid="WinJS.UI.Layout.constructor">
/// Creates a new Layout object.
/// </summary>
/// <param name="options" type="Object" locid="exports.Layout.constructor_p:options">
/// <param name="options" type="Object" locid="WinJS.UI.Layout.constructor_p:options">
/// The set of options to be applied initially to the new Layout object.
/// </param>
/// <returns type="exports.Layout" locid="exports.Layout.constructor_returnValue">
/// <returns type="WinJS.UI.Layout" locid="WinJS.UI.Layout.constructor_returnValue">
/// The new Layout object.
/// </returns>
/// </signature>
Expand Down Expand Up @@ -737,7 +737,7 @@ define([
} else if (adjustedKey === Key.rightArrow) {
var desiredIndex = currentItem.index + 1;
desiredIndex = (that._site.header ? desiredIndex : Math.min(that._groups.length - 1, currentItem.index + 1));
return {
return {
type: (desiredIndex >= that._groups.length ? _UI.ObjectType.header : _UI.ObjectType.groupHeader),
index: (desiredIndex >= that._groups.length ? 0 : desiredIndex)
};
Expand Down

0 comments on commit 1acb590

Please sign in to comment.