0f05d4f09ed2171adcaf6c4e51f8740dc136e26b
[mtweb] / mw / app / out / default / js / actions / users.js
1 $(document).ready(
2   function(){
3     init_tinymce();
4   }
5 );
6
7 function init_tinymce(){
8   $(".tinymce").each(
9     function(){
10       tinyMCE.execCommand("mceAddControl", true, $(this).attr("id"));
11     }
12   );
13 }