Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. class ApplicationController < ActionController::Base
  2. def favorite_text
  3. return @favorite_exists ? "UnFavorite" : "Favorite"
  4. end
  5. helper_method :favorite_text
  6. end
  7.  
  8.  
  9. <%= link_to favorite_text, favorites_update_path(post: @post), id: 'favorite_link', remote: true %>
  10.  
  11. #função que faz o texto trocar
  12. $('#favorite_link').text("<%= favorite_text %>");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement