VRFS-1609 fixed

This commit is contained in:
Bert Owen 2014-04-19 12:52:54 -07:00
parent 6e5848fe60
commit 404670c9a5
2 changed files with 2 additions and 3 deletions

View File

@ -182,7 +182,7 @@
band = response;
if (band) {
// name
$('#band-profile-name').html(band.name);
$('#band-profile-name').text(band.name);
// avatar
$('#band-profile-avatar').attr('src', context.JK.resolveAvatarUrl(band.photo_url));
@ -200,7 +200,7 @@
text = band.recording_count > 1 || band.recording_count == 0 ? " Recordings" : " Recording";
$('#band-profile-recording-stats').html(band.recording_count + text);
$('#band-profile-biography').html(band.biography);
$('#band-profile-biography').text(band.biography);
// wire up Follow click
configureBandFollowingButton(band.is_following);

View File

@ -115,7 +115,6 @@ describe "Bands", :js => true, :type => :feature, :capybara_feature => true do
end
it "handles special characters in text fields" do
pending "update this after VRFS-1609 is resolved"
navigate_band_setup
band_name = garbage(3) + ' ' + garbage(50)
band_bio = garbage(500)