Skip to content

Commit

Permalink
more cleanup after merge with svn
Browse files Browse the repository at this point in the history
  • Loading branch information
edchat committed Jan 26, 2012
1 parent 2dfc361 commit a37326b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Group.js
@@ -1,10 +1,10 @@
define(["dojo/_base/declare", "dijit/_WidgetBase", "dojo/_base/lang"], function(declare, WidgetBase, lang){
define(["dojo/_base/declare", "dijit/_WidgetBase", "dojo/_base/lang"], function(declare, _WidgetBase, lang){
/*=====
WidgetBase = dijit._WidgetBase;
declare = dojo.declare;
=====*/

return declare("dojox.mvc.Group", [WidgetBase], {
return declare("dojox.mvc.Group", _WidgetBase, {
// summary:
// A simple model-bound container widget with single-node binding to a data model.
//
Expand Down
2 changes: 1 addition & 1 deletion Output.js
Expand Up @@ -11,7 +11,7 @@ define([
_WidgetBase = dijit._WidgetBase;
=====*/

return declare("dojox.mvc.Output", [_WidgetBase], {
return declare("dojox.mvc.Output", _WidgetBase, {
// summary:
// A simple widget that displays templated output, parts of which may
// be data-bound.
Expand Down
2 changes: 1 addition & 1 deletion Repeat.js
Expand Up @@ -14,7 +14,7 @@ define([
_Container = dojox.mvc._Container;
=====*/

return declare("dojox.mvc.Repeat", [_Container], {
return declare("dojox.mvc.Repeat", _Container, {
// summary:
// A model-bound container which binds to a collection within a data model
// and produces a repeating user-interface from a template for each
Expand Down
2 changes: 1 addition & 1 deletion _Container.js
Expand Up @@ -9,7 +9,7 @@ define([
_WidgetBase = dijit._WidgetBase;
=====*/

return declare("dojox.mvc._Container", [_WidgetBase], {
return declare("dojox.mvc._Container", _WidgetBase, {

// stopParser: [private] Boolean
// Flag to parser to not try and parse widgets declared inside the container.
Expand Down

0 comments on commit a37326b

Please sign in to comment.