Package wicket.contrib.mootools

Source Code of wicket.contrib.mootools.MFXJavascriptUtils

package wicket.contrib.mootools;

import org.apache.wicket.markup.html.resources.CompressedResourceReference;
import org.apache.wicket.util.string.JavascriptUtils;

import wicket.contrib.mootools.plugins.MFXLogger;

/**
* Convenience class for writing Moocentric Javascript tags.
*
* @author victori
*
*/
public class MFXJavascriptUtils {
  /**
   * Write domReady function open tag
   *
   * @return
   */
  public final static String DOM_READY_OPEN() {
    String str;
    str = JavascriptUtils.SCRIPT_OPEN_TAG;
    str += "window.addEvent(\"domready\", function() {";
    return str;
  }

  public final static CompressedResourceReference getMooAddonsJS() {
    return new CompressedResourceReference(MFXLogger.class, "mfxaddons.js");
  }

  public final static CompressedResourceReference getMooAddonsCSS() {
    return new CompressedResourceReference(MFXLogger.class, "mfxaddons.css");
  }

  /**
   * Write domReady function close tag
   *
   * @return
   */
  public final static String DOM_READY_CLOSE() {
    return "});" + JavascriptUtils.SCRIPT_CLOSE_TAG;
  }
}
TOP

Related Classes of wicket.contrib.mootools.MFXJavascriptUtils

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.