Sha256: d219e689d753b4b33e4190db471c45644d573370a885dd5c9be4d3a068196f13

Contents?: true

Size: 1.38 KB

Versions: 10

Compression:

Stored size: 1.38 KB

Contents

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<%= stylesheet_link_tag "/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle" %>
<%= javascript_include_tag "fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow" %>
<script type="text/javascript" language="javascript">
// <![CDATA[
	var suggs = new Array();
	var words = new Array();
	var textinputs = new Array();
	var error;

	textinputs[0] = decodeURIComponent('<%= @original_text %>');
	words[0] = [];
	suggs[0] = [];

	<% @words.each_with_index do |pair, i| %>
		words[0][<%= i %>] = '<%= pair[0] %>';
		suggs[0][<%= i %>] = [<%= pair[1] %>];
	<% end %>

	var wordWindowObj = new wordWindow();
	wordWindowObj.originalSpellings = words;
	wordWindowObj.suggestions = suggs;
	wordWindowObj.textInputs = textinputs;

	function init_spell() {
	  // check if any error occured during server-side processing
	  if( error ) {
	    alert( error );
	  } else {
	    // call the init_spell() function in the parent frameset
	    if (parent.frames.length) {
	      parent.init_spell( wordWindowObj );
	    } else {
	      alert('This page was loaded outside of a frameset. It might not display properly');
	    }
	  }
	}
</script>
</head>
<body onload="init_spell();">

<script type="text/javascript" language="javascript">
// <![CDATA[
	wordWindowObj.writeBody();
// ]]>
</script>

</body>
</html>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
typo-5.0.3.98.1 vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml
typo-5.0.3.98 vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml
typo-5.1.1 vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml
typo-5.1.2 vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml
typo-5.1.3 vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml
typo-5.1.98 vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml
typo-5.1 vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml
typo-5.2.98 vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml
typo-5.2 vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml
typo-5.3 vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml