[virtualcommons-developer] [lighterprints] r33 - sandbox/shawn/src
Status: Beta
Brought to you by:
alllee
|
From: <sdf...@so...> - 2011-06-15 02:06:37
|
Author: sdfitzpa
Date: Tue Jun 14 19:06:30 2011
New Revision: 33
Log:
Changed width of buttons so they are all the same size
Modified:
sandbox/shawn/src/index.js
Modified: sandbox/shawn/src/index.js
==============================================================================
--- sandbox/shawn/src/index.js Mon Jun 13 12:06:06 2011 (r32)
+++ sandbox/shawn/src/index.js Tue Jun 14 19:06:30 2011 (r33)
@@ -69,6 +69,7 @@
ui: 'normal',
text: 'Activities',
cls: 'homeSpace',
+ width: 240,
handler: function() {
panel.setActiveItem(1);
}
@@ -78,6 +79,7 @@
ui: 'normal',
text: 'Rules',
cls: 'buttonSpace',
+ width: 240,
handler: function() {
panel.setActiveItem(2);
}
@@ -87,6 +89,7 @@
ui: 'normal',
text: 'Team Progress',
cls: 'buttonSpace',
+ width: 240,
handler: function() {
panel.setActiveItem(3);
}
@@ -96,6 +99,7 @@
ui: 'normal',
text: 'Discussion Board',
cls: 'buttonSpace',
+ width: 240,
handler: function() {
panel.setActiveItem(4);
}
@@ -118,6 +122,7 @@
ui: 'normal',
text: 'Home',
cls: 'actHome',
+ width: 240,
handler: function() {
panel.setActiveItem(0);
}
@@ -139,6 +144,7 @@
ui: 'normal',
text: 'Home',
cls: 'rulesHome',
+ width: 240,
handler: function() {
panel.setActiveItem(0);
}
@@ -160,6 +166,7 @@
ui: 'normal',
text: 'Home',
cls: 'teamHome',
+ width: 240,
handler: function() {
panel.setActiveItem(0);
}
@@ -181,6 +188,7 @@
ui: 'normal',
text: 'Home',
cls: 'discussHome',
+ width: 240,
handler: function() {
panel.setActiveItem(0);
}
|