Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 6th, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. CodeMirror on rails 3.1?
  2. //----- code (application.js)------//
  3. $(document).ready(function() {
  4.     $('#comment_body').each(function() {
  5.          var editor = CodeMirror.fromTextArea(this, {
  6.              lineNumbers : true,
  7.              matchBrackets : true
  8.          });
  9.      })
  10. })
  11. //------end------//