Changeset d7e949 in indico


Ignore:
Timestamp:
12/01/11 13:38:16 (18 months ago)
Author:
Pedro Ferreira <jose.pedro.ferreira@…>
Branches:
master, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, d9941f8582b36b24821a11ea5ba16fda6a457fb1
Children:
419f80
Parents:
56da58
git-author:
Adrian Moennich <jerome.ernst.monnich@…> (08/12/11 11:27:03)
git-committer:
Pedro Ferreira <jose.pedro.ferreira@…> (12/01/11 13:38:16)
Message:

[REF] Get rid of unused arguments

Location:
indico
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/plugins/InstantMessaging/htdocs/js/InstantMessaging.js

    rd81530 rd7e949  
    353353 
    354354            this.tabControl = new TabWidget([[$T("Basic"), this.basicTabForm], [$T("Advanced"), this.advancedTabForm]], width, height); 
    355             return this.ExclusivePopupWithButtons.prototype.draw.call(this, this.tabControl.draw(), {backgroundColor: "#FFFFFF"}); 
     355            return this.ExclusivePopupWithButtons.prototype.draw.call(this, this.tabControl.draw()); 
    356356        }, 
    357357 
  • indico/htdocs/js/indico/Collaboration/Collaboration.js

    r97b0d2 rd7e949  
    10651065            this.tabControl = new TabWidget([[$T("Basic"), this.basicTabForm], [$T("Advanced"), this.advancedTabForm]], width, null); 
    10661066 
    1067             return this.ExclusivePopupWithButtons.prototype.draw.call(this, this.tabControl.draw(), null, 
    1068                     {backgroundColor: "#FFFFFF"}); 
     1067            return this.ExclusivePopupWithButtons.prototype.draw.call(this, this.tabControl.draw()); 
    10691068        }, 
    10701069 
  • indico/htdocs/js/indico/Core/Dialogs/Popup.js

    r97b0d2 rd7e949  
    228228            this.buttons[this.defaultButton].focus(); 
    229229        } 
    230     }, 
    231     draw: function(mainContent, buttonContent, popupCustomStyle, mainContentStyle, buttonBarStyle) { 
    232         this.ExclusivePopup.prototype.draw.call(this, mainContent, popupCustomStyle); 
    233230    } 
    234231}, function(title, closeButtonHandler, printable, showPrintButton, noCanvas){ 
  • indico/htdocs/js/indico/Core/Dialogs/PopupWidgets.js

    r8f8e4d rd7e949  
    6464 
    6565    draw: function() { 
    66         return this.ExclusivePopupWithButtons.prototype.draw.call(this, this._drawWidget(), null, { 
     66        return this.ExclusivePopupWithButtons.prototype.draw.call(this, this._drawWidget(), { 
    6767            overflow: 'visible' 
    6868        }); 
  • indico/htdocs/js/indico/MaterialEditor/Editor.js

    rfa830c rd7e949  
    563563                                       400, 300); 
    564564 
    565         return this.ExclusivePopupWithButtons.prototype.draw.call(this, this._drawWidget(), null, {backgroundColor: 'white'}); 
     565        return this.ExclusivePopupWithButtons.prototype.draw.call(this, this._drawWidget()); 
    566566    } 
    567567 
     
    616616    }, 
    617617 
    618      _fileUpload: function() { 
     618    _fileUpload: function() { 
    619619        var self = this 
    620620        var pm = self.pm = new IndicoUtil.parameterManager(); 
Note: See TracChangeset for help on using the changeset viewer.