Changeset 407 for Dev/branches/rest-dojo-ui/client/rft/ui/MenuBarLink.js
- Timestamp:
- 09/05/12 14:41:13 (13 years ago)
- Location:
- Dev/branches/rest-dojo-ui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/branches/rest-dojo-ui
- Property svn:ignore
-
old new 1 1 nbproject 2 2 .project 3 release
-
- Property svn:ignore
-
Dev/branches/rest-dojo-ui/client
- Property svn:externals
-
old new 1 dojotoolkit http://svn.dojotoolkit.org/src/tags/release-1.8.0 1 dojo http://svn.dojotoolkit.org/src/tags/release-1.8.0/dojo 2 dijit http://svn.dojotoolkit.org/src/tags/release-1.8.0/dijit 3 dojox http://svn.dojotoolkit.org/src/tags/release-1.8.0/dojox 4 util http://svn.dojotoolkit.org/src/tags/release-1.8.0/util
-
- Property svn:externals
-
Dev/branches/rest-dojo-ui/client/rft/ui/MenuBarLink.js
r256 r407 1 define(['dojo/_base/declare','dijit/MenuBarItem','../ content'],2 function(declare,MenuBarItem, content){3 return declare( 'rft.ui.MenuBarLink',[MenuBarItem],{1 define(['dojo/_base/declare','dijit/MenuBarItem','../app/Controller'], 2 function(declare,MenuBarItem,Controller){ 3 return declare([MenuBarItem],{ 4 4 options:{ 5 pa geId: null5 path: null 6 6 }, 7 7 onClick: function(){ 8 content.goTo(this.pageId);8 this.path && Controller.go(this.path); 9 9 } 10 10 });
Note: See TracChangeset
for help on using the changeset viewer.