[Isocial-svn] SF.net SVN: isocial: [71]
Status: Pre-Alpha
Brought to you by:
aguidrevitch
From: <agu...@us...> - 2008-03-13 11:34:23
|
Revision: 71 http://isocial.svn.sourceforge.net/isocial/?rev=71&view=rev Author: aguidrevitch Date: 2008-03-13 04:34:29 -0700 (Thu, 13 Mar 2008) Log Message: ----------- Opera javascript fixes Modified Paths: -------------- app/views/message/outbox.tpl public/javascripts/autocomplete.js public/javascripts/dialog.js Modified: app/views/message/outbox.tpl =================================================================== --- app/views/message/outbox.tpl 2008-03-13 11:21:12 UTC (rev 70) +++ app/views/message/outbox.tpl 2008-03-13 11:34:29 UTC (rev 71) @@ -99,7 +99,7 @@ } } ); - }, + } }); return false; } Modified: public/javascripts/autocomplete.js =================================================================== --- public/javascripts/autocomplete.js 2008-03-13 11:21:12 UTC (rev 70) +++ public/javascripts/autocomplete.js 2008-03-13 11:34:29 UTC (rev 71) @@ -5,7 +5,7 @@ stopIndicator: function() { if(this.options.indicator) Element.removeClassName(this.options.indicator, 'loading'); - }, + } }); function city_updated (input, prev, hidden) { Modified: public/javascripts/dialog.js =================================================================== --- public/javascripts/dialog.js 2008-03-13 11:21:12 UTC (rev 70) +++ public/javascripts/dialog.js 2008-03-13 11:34:29 UTC (rev 71) @@ -24,7 +24,7 @@ Object.extend(this.dialog.style, { position: 'absolute', - zIndex: 9999, + zIndex: 9999 }); var offset = this.reference.viewportOffset(); @@ -57,21 +57,21 @@ default: this.yesButton.value = this.options.yes; this.yesButton.observe('click', this.onYes.bind(this)); - } + }; switch (this.options.no) { case 0, false, undefined: this.noButton.hide(); break; default: this.noButton.value = this.options.no; this.noButton.observe('click', this.onNo.bind(this)); - } + }; switch (this.options.cancel) { case 0, false, undefined: this.cancelButton.hide(); break; default: this.cancelButton.value = this.options.cancel; this.cancelButton.observe('click', this.onCancel.bind(this)); - } + }; this.dialog.show(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |