Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. @category1 = @posts.where(category: "1")
  2. @category2 = @posts.where(category: "2")
  3. @category3 = @posts.where(category: "3")
  4.  
  5. { title: "Category 1", value: 22, color: "#2C3E50" },
  6. { title: "Category 2", value: 80, color: "#FC4349" },
  7. { title: "Category 3", value: 70, color: "#6DBCDB" },
  8.  
  9. <div id="metrics" data-category1="<%= @category1.size %>">
  10. </div>
  11.  
  12. var $category1 = $("#metrics").data("category1")
  13.  
  14. @category1 = @posts.where(category: "1")
  15. gon.category1Size = @category1.size
  16.  
  17. alert(gon.category1Size);
  18.  
  19. { title: "Category 1", value: 22, color: "#2C3E50" },
  20. { title: "Category 2", value: 80, color: "#FC4349" },
  21. { title: "Category 3", value: 70, color: "#6DBCDB" },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement