Skip to content

Commit

Permalink
Merge api doc updates from bill.
Browse files Browse the repository at this point in the history
  • Loading branch information
edchat committed Jun 21, 2012
1 parent f18b8e3 commit 1deb542
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Output.js
Expand Up @@ -19,11 +19,11 @@ define([
// | </span> // | </span>
// //
// The output widget being data-bound, if the balance changes in the // The output widget being data-bound, if the balance changes in the
// dojox/mvc/StatefulModel, the content within the <span> will be // dojox/mvc/StatefulModel, the content within the `<span>` will be
// updated accordingly. // updated accordingly.


// exprchar: Character // exprchar: Character
// Character to use for a substitution expression, for a substitution string like ${this.index} // Character to use for a substitution expression, for a substitution string like ${this.value}
exprchar: '$', exprchar: '$',


// templateString: [private] String // templateString: [private] String
Expand Down
2 changes: 1 addition & 1 deletion WidgetList.js
Expand Up @@ -33,7 +33,7 @@ define([
// | data-mvc-child-type="dijit/form/TextBox" // | data-mvc-child-type="dijit/form/TextBox"
// | data-mvc-child-props="value: at(this.target, 'First')"></div> // | data-mvc-child-props="value: at(this.target, 'First')"></div>
// example: // example:
// Create multiple instances of widgets-in-template based on the HTML written in <script type="dojox/mvc/InlineTemplate">. // Create multiple instances of widgets-in-template based on the HTML written in `<script type="dojox/mvc/InlineTemplate">`.
// The label refers to Serial property in the array item, and the text box refers to First property in the array item. // The label refers to Serial property in the array item, and the text box refers to First property in the array item.
// | <div data-dojo-type="dojox/mvc/WidgetList" // | <div data-dojo-type="dojox/mvc/WidgetList"
// | data-dojo-mixins="dojox/mvc/_InlineTemplateMixin" // | data-dojo-mixins="dojox/mvc/_InlineTemplateMixin"
Expand Down
3 changes: 2 additions & 1 deletion _InlineTemplateMixin.js
Expand Up @@ -7,7 +7,8 @@ define([


return declare("dojox.mvc._InlineTemplateMixin", null, { return declare("dojox.mvc._InlineTemplateMixin", null, {
// summary: // summary:
// A mixin for template widget, which will look for <script type="dojox/mvc/InlineTemplate"> and treat the HTML in there as the template string. // A mixin for template widget, which will look for `<script type="dojox/mvc/InlineTemplate">`
// and treat the HTML in there as the template string.


buildRendering: function(){ buildRendering: function(){
var root = this.srcNodeRef; var root = this.srcNodeRef;
Expand Down

0 comments on commit 1deb542

Please sign in to comment.