block_class.prototype.init_buttons = function(){
- var viewbutton = main.mk_button('a','/pix/t/hide.gif',[['class','icon hide']]);
+ var viewbutton = main.mk_button('a', '/t/hide.gif',[['class','icon hide']]);
YAHOO.util.Event.addListener(viewbutton,'click',this.toggle_hide,this,true);
- var deletebutton = main.mk_button('a','/pix/t/delete.gif',[['class','icon delete']]);
+ var deletebutton = main.mk_button('a', '/t/delete.gif',[['class','icon delete']]);
YAHOO.util.Event.addListener(deletebutton,'click',this.delete_button,this,true);
}
if (!this.isWeekFormat) {
- var highlightbutton = main.mk_button('div', '/pix/i/marker.gif');
+ var highlightbutton = main.mk_button('div', '/i/marker.gif');
YAHOO.util.Event.addListener(highlightbutton, 'click', this.mk_marker, this, true);
commandContainer.appendChild(highlightbutton);
this.highlightButton = highlightbutton;
}
- var viewbutton = main.mk_button('div', '/pix/i/hide.gif');
+ var viewbutton = main.mk_button('div', '/i/hide.gif');
YAHOO.util.Event.addListener(viewbutton, 'click', this.toggle_hide, this,true);
commandContainer.appendChild(viewbutton);
this.viewButton = viewbutton;
}
section_class.prototype.add_handle = function() {
- var handleRef = main.mk_button('a', '/pix/i/move_2d.gif', [['style','cursor:move']]);
+ var handleRef = main.mk_button('a', '/i/move_2d.gif', [['style','cursor:move']]);
YAHOO.util.Dom.generateId(handleRef, 'sectionHandle');
this.handle = handleRef;
commandContainer.innerHTML = '';
//add move-handle
- var handleRef = main.mk_button('a', '/pix/i/move_2d.gif',
+ var handleRef = main.mk_button('a', '/i/move_2d.gif',
[['style', 'cursor:move']], [['height', '11'], ['width', '11'],
['hspace', '2'], ['border', '0']]);
commandContainer.appendChild(updateButton);
//add rest
- var button = main.mk_button('a', '/pix/t/delete.gif');
+ var button = main.mk_button('a', '/t/delete.gif');
YAHOO.util.Event.addListener(button, 'click', this.delete_button, this, true);
commandContainer.appendChild(button);
if (this.hidden) {
- var button = main.mk_button('a', '/pix/t/show.gif');
+ var button = main.mk_button('a', '/t/show.gif');
} else {
- var button = main.mk_button('a', '/pix/t/hide.gif');
+ var button = main.mk_button('a', '/t/hide.gif');
}
YAHOO.util.Event.addListener(button, 'click', this.toggle_hide, this, true);
commandContainer.appendChild(button);
}
}
-activity_class.prototype.groupImages = ['/pix/t/groupn.gif', '/pix/t/groups.gif', '/pix/t/groupv.gif'];
+activity_class.prototype.groupImages = ['/t/groupn.gif', '/t/groups.gif', '/t/groupv.gif'];
activity_class.prototype.init_activity_button = function() {
- var button = main.mk_button('a',this.groupImages[this.currentGroup]);
+ var button = main.mk_button('a', this.groupImages[this.currentGroup]);
YAHOO.util.Event.addListener(button,'click',this.toggle_group,this,true);
this.commandContainer.appendChild(button);
this.groupButton = button;