Sha256: 2529cc886e0562cd1184753bbc081820d2e6b7c20400647414b0f1ecbedba02d

Contents?: true

Size: 1.61 KB

Versions: 31

Compression:

Stored size: 1.61 KB

Contents

/*
 * WYMeditor : what you see is What You Mean web-based editor
 * Copyright (c) 2005 - 2009 Jean-Francois Hovinne, http://www.wymeditor.org/
 * Dual licensed under the MIT (MIT-license.txt)
 * and GPL (GPL-license.txt) licenses.
 *
 * For further information visit:
 *        http://www.wymeditor.org/
 *
 * File Name:
 *        jquery.wymeditor.hovertools.js
 *        hovertools plugin for WYMeditor
 *
 * File Authors:
 *        Jean-Francois Hovinne (jf.hovinne a-t wymeditor dotorg)
 */

//Extend WYMeditor
WYMeditor.editor.prototype.hovertools = function() {
  
  var wym = this;
  
  //bind events on buttons
  jQuery(this._box).find(this._options.toolSelector).hover(
    function() {
      wym.status(jQuery(this).html());
    },
    function() {
      wym.status(' ');
    }
  );

  //classes: add/remove a style attr to matching elems
  //while mouseover/mouseout
  jQuery(this._box).find(this._options.classSelector).hover(
    function() {
      var aClasses = eval(wym._options.classesItems);
      var sName = jQuery(this).attr(WYMeditor.NAME);
      var oClass = WYMeditor.Helper.findByName(aClasses, sName);

      if(oClass){
        jqexpr = oClass.expr;
        //don't use jQuery.find() on the iframe body
        //because of MSIE + jQuery + expando issue (#JQ1143)
        if(!jQuery.browser.msie)
          jQuery(wym._doc).find(jqexpr).css('background-color','#cfc');
      }
    },
    function() {
      //don't use jQuery.find() on the iframe body
      //because of MSIE + jQuery + expando issue (#JQ1143)
      if(!jQuery.browser.msie)
        jQuery(wym._doc).find('*').removeAttr('style');
    }
  );

};

Version data entries

31 entries across 31 versions & 8 rubygems

Version Path
wymeditor-simple_form-0.0.5 vendor/assets/wymeditor/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.15 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
wymeditor-simple_form-0.0.4 vendor/assets/wymeditor/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
wymeditor-simple_form-0.0.2 vendor/assets/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
wymeditor-simple_form-0.0.1 vendor/assets/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.13 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.12 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.11 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.10 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.9 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.8 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.7 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.6 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.4 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.3 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
milksteak-0.0.2 lib/public/milksteak/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
spree_editor-0.70.0 vendor/assets/javascripts/admin/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
spud_admin-0.2.0 app/assets/javascripts/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
comatose-rubyisbeautiful-3.0.5 public/javascripts/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js
comatose-rubyisbeautiful-3.0.4 public/javascripts/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js