Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 912)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 913)
@@ -263,4 +263,6 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1303">#1303</a>] &lt;col&gt; is
 			correctly treated as an empty element.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/969">#969</a>] Removed unused files
+			(fcknumericfield.htc and moz-bindings.xml).</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/dialog/common/fck_dialog_common.css
===================================================================
--- /FCKeditor/trunk/editor/dialog/common/fck_dialog_common.css	(revision 912)
+++ /FCKeditor/trunk/editor/dialog/common/fck_dialog_common.css	(revision 913)
@@ -77,7 +77,2 @@
 	cursor: hand;
 }
-
-.FCK__FieldNumeric
-{
-	behavior: url(common/fcknumericfield.htc) ;
-}
Index: Keditor/trunk/editor/dialog/common/fcknumericfield.htc
===================================================================
--- /FCKeditor/trunk/editor/dialog/common/fcknumericfield.htc	(revision 912)
+++ 	(revision )
@@ -1,24 +1,0 @@
-<public:component lightweight="true">
-
-<script language="javascript">
-
-function CheckIsDigit()
-{
-	var iCode = event.keyCode ;
-
-	event.returnValue =
-		(
-			( iCode >= 48 && iCode <= 57 )		// Numbers
-			|| (iCode >= 37 && iCode <= 40)		// Arrows
-			|| iCode == 8						// Backspace
-			|| iCode == 46						// Delete
-		) ;
-
-	return event.returnValue ;
-}
-
-this.onkeypress = CheckIsDigit ;
-
-</script>
-
-</public:component>
Index: Keditor/trunk/editor/dialog/common/moz-bindings.xml
===================================================================
--- /FCKeditor/trunk/editor/dialog/common/moz-bindings.xml	(revision 912)
+++ 	(revision )
@@ -1,30 +1,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<bindings xmlns="http://www.mozilla.org/xbl">
-	<binding id="numericfield">
-		<implementation>
-			<constructor>
-				this.keypress = CheckIsDigit ;
-			</constructor>
-			<method name="CheckIsDigit">
-				<body>
-					<![CDATA[
-					var iCode = keyCode ;
-
-					var bAccepted =
-						(
-							( iCode >= 48 && iCode <= 57 )		// Numbers
-							|| (iCode >= 37 && iCode <= 40)		// Arrows
-							|| iCode == 8						// Backspace
-							|| iCode == 46						// Delete
-						) ;
-
-					return bAccepted ;
-					]]>
-				</body>
-			</method>
-		</implementation>
-		<events>
-			<event type="keypress" value="CheckIsDigit()" />
-		</events>
-	</binding>
-</bindings>
Index: /FCKeditor/trunk/editor/dialog/fck_flash.html
===================================================================
--- /FCKeditor/trunk/editor/dialog/fck_flash.html	(revision 912)
+++ /FCKeditor/trunk/editor/dialog/fck_flash.html	(revision 913)
@@ -56,10 +56,10 @@
 								<TD nowrap>
 									<span fckLang="DlgImgWidth">Width</span><br>
-									<input id="txtWidth" class="FCK__FieldNumeric" type="text" size="3">
+									<input id="txtWidth" onkeypress="return IsDigit(event);" type="text" size="3">
 								</TD>
 								<TD>&nbsp;</TD>
 								<TD>
 									<span fckLang="DlgImgHeight">Height</span><br>
-									<input id="txtHeight" class="FCK__FieldNumeric" type="text" size="3">
+									<input id="txtHeight" onkeypress="return IsDigit(event);" type="text" size="3">
 								</TD>
 							</TR>
