Skip to content

Instantly share code, notes, and snippets.

@lachie
Created February 23, 2009 02:18
Show Gist options
  • Save lachie/68752 to your computer and use it in GitHub Desktop.
Save lachie/68752 to your computer and use it in GitHub Desktop.
#Ruby assignment option to assign unless nil
replacement_content = page_contents.content_label_find(item)
element.inner_html = replacement_content if replacement_content
# or
if pc = page_contents.content_label_find(item)
element.inner_html = pc
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment