Merge lp:~thumper/launchpad/fix-y-lang into lp:launchpad

Proposed by Tim Penhey
Status: Merged
Approved by: Paul Hummer
Approved revision: no longer in the source branch.
Merged at revision: 11204
Proposed branch: lp:~thumper/launchpad/fix-y-lang
Merge into: lp:launchpad
Prerequisite: lp:~thumper/launchpad/lp-app-javascript
Diff against target: 12 lines (+1/-1)
1 file modified
lib/lp/app/javascript/comment.js (+1/-1)
To merge this branch: bzr merge lp:~thumper/launchpad/fix-y-lang
Reviewer Review Type Date Requested Status
Paul Hummer (community) code javascript Approve
Review via email: mp+30121@code.launchpad.net

Commit message

Fix the caps issue with Y.lang.

To post a comment you must log in.
Revision history for this message
Paul Hummer (rockstar) :
review: Approve (code javascript)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/lp/app/javascript/comment.js'
2--- lib/lp/app/javascript/comment.js 2010-07-16 15:33:48 +0000
3+++ lib/lp/app/javascript/comment.js 2010-07-16 15:33:50 +0000
4@@ -409,7 +409,7 @@
5
6 var username = LP.client.links.me.substring(2);
7 var new_reviewer = Y.one('#review-' + username);
8- if (Y.lang.isValue(new_reviewer)) {
9+ if (Y.Lang.isValue(new_reviewer)) {
10 var anim = Y.lazr.anim.green_flash({
11 node: new_reviewer});
12 anim.run();