Plugin Directory

Changeset 511386


Ignore:
Timestamp:
02/27/2012 09:21:24 PM (14 years ago)
Author:
nickohrn
Message:

Fixed issue with Google Web Fonts not showing up in Firefox in backend.

Location:
web-fonts/branches/1.1.x
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • web-fonts/branches/1.1.x/modules/google-web-fonts/google-web-fonts.php

    r507489 r511386  
    44 Plugin URI: http://www.google.com/webfonts
    55 Description: A plugin for the Web Fonts plugin produced by Fonts.com and Monotype Imaging. This built in plugin adds Google Web Fonts support to the Web Fonts plugin.
    6  Version: 1.0.0-RC1
     6 Version: 1.0.0-RC2
    77 Author: Nick Ohrn of Plugin-Developer.com
    88 Author URI: http://plugin-developer.com/
     
    1515       
    1616        //// VERSION
    17         const VERSION = '1.0.0-RC1';
     17        const VERSION = '1.0.0-RC2';
    1818       
    1919        //// KEYS
     
    184184           
    185185            foreach($enabled_fonts as $enabled_font_id => $enabled_font) {
    186                 $data['fonts'][] = web_fonts_prepare_font_item('google-web-fonts', $enabled_font_id, $enabled_font['family_name'], $enabled_font['family'], 'Quick Brown Fox Jumped Over The Lazy Dog', $font_selector_map[$enabled_font_id], array('font-style' => $enabled_font['style'], 'font-weight' => $enabled_font['weight']));
     186                $data['fonts'][] = web_fonts_prepare_font_item('google-web-fonts', $enabled_font_id, $enabled_font['family_name'], $enabled_font['family'], 'Quick Brown Fox Jumped Over The Lazy Dog', $font_selector_map[$enabled_font_id], array('fontFamily' => $enabled_font['family'], 'fontStyle' => $enabled_font['style'], 'fontWeight' => $enabled_font['weight']));
    187187            }
    188188       
  • web-fonts/branches/1.1.x/modules/google-web-fonts/views/backend/settings/fonts.php

    r507471 r511386  
    5151    <div data-bind="foreach: fonts" id="google-web-fonts-font-items-wrapper">
    5252        <div class="google-web-fonts-font-item">
    53             <div data-bind="style: { 'font-family': family(), 'font-weight': weight(), 'font-style': style() }" class="google-web-fonts-font-item-sample">AaGg</div>
     53            <div data-bind="style: { fontFamily: family(), fontWeight: weight(), fontStyle: style() }" class="google-web-fonts-font-item-sample">AaGg</div>
    5454            <div data-bind="text: family_name" class="google-web-fonts-font-item-name"></div>
    5555            <div class="google-web-fonts-font-item-charset"></div>
  • web-fonts/branches/1.1.x/web-fonts.php

    r507489 r511386  
    44 Plugin URI: http://webfonts.fonts.com
    55 Description: The canonical Web Fonts plugin for WordPress. This plugin includes support for Fonts.com web fonts and supports a variety of web font providers via an easy to implement plugin architecture.
    6  Version: 1.1.0
     6 Version: 1.1.0-RC2
    77 Author: Nick Ohrn of Plugin-Developer.com
    88 Author URI: http://plugin-developer.com/
     
    1414       
    1515        //// VERSION
    16         const VERSION = '1.1.0';
     16        const VERSION = '1.1.0-RC2';
    1717       
    1818        //// KEYS
Note: See TracChangeset for help on using the changeset viewer.