summaryrefslogtreecommitdiff
path: root/gstudio/templates/admin/gstudio/nodetype/wymeditor.js
blob: 6cf8633ad583d0f5c7b2fd522289072e8e8bc809 (plain)
1
2
3
4
5
6
7
8
9
10
$(document).ready(function() {
  $("#id_content").wymeditor({
	  skin: "django", lang: "{{ LANGUAGE_CODE }}",
	  stylesheet: "{{ STATIC_URL }}gstudio/css/wymeditor_styles.css",
	  updateSelector: "input:submit", updateEvent: "click",
	  postInit: function(wym) {
	      wym.hovertools();
	  }
      });
    });