Author: pyaschenko
Date: 2010-07-19 10:09:07 -0400 (Mon, 19 Jul 2010)
New Revision: 18149
Modified:
root/core/trunk/impl/src/main/resources/META-INF/resources/richfaces-base-component.js
Log:
revert blunkFuntion
Modified:
root/core/trunk/impl/src/main/resources/META-INF/resources/richfaces-base-component.js
===================================================================
---
root/core/trunk/impl/src/main/resources/META-INF/resources/richfaces-base-component.js 2010-07-19
13:52:13 UTC (rev 18148)
+++
root/core/trunk/impl/src/main/resources/META-INF/resources/richfaces-base-component.js 2010-07-19
14:09:07 UTC (rev 18149)
@@ -5,7 +5,7 @@
(function ($, richfaces, params) {
- richfaces.BLANK_FUNCTION = function (){}; //TODO: add it to global library
+ richfaces.blankFunction = function (){}; //TODO: add it to global library
/**
* @class Base class for all components.
@@ -56,7 +56,7 @@
var extend = function (parent, child, h) {
h = h || {};
- var F = richfaces.BLANK_FUNCTION;
+ var F = richfaces.blankFunction;
F.prototype = parent.prototype;
child.prototype = new F();
child.prototype.constructor = child;
@@ -127,7 +127,7 @@
*
* */
richfaces.BaseComponent.extendClass = function (methods) {
- var DerivedClass = methods.init || richfaces.BLANK_FUNCTION;
+ var DerivedClass = methods.init || richfaces.blankFunction;
var SupperClass = this;
SupperClass.extend(DerivedClass);
Show replies by date