Changeset 511386
- Timestamp:
- 02/27/2012 09:21:24 PM (14 years ago)
- Location:
- web-fonts/branches/1.1.x
- Files:
-
- 3 edited
-
modules/google-web-fonts/google-web-fonts.php (modified) (3 diffs)
-
modules/google-web-fonts/views/backend/settings/fonts.php (modified) (1 diff)
-
web-fonts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
web-fonts/branches/1.1.x/modules/google-web-fonts/google-web-fonts.php
r507489 r511386 4 4 Plugin URI: http://www.google.com/webfonts 5 5 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-RC 16 Version: 1.0.0-RC2 7 7 Author: Nick Ohrn of Plugin-Developer.com 8 8 Author URI: http://plugin-developer.com/ … … 15 15 16 16 //// VERSION 17 const VERSION = '1.0.0-RC 1';17 const VERSION = '1.0.0-RC2'; 18 18 19 19 //// KEYS … … 184 184 185 185 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'])); 187 187 } 188 188 -
web-fonts/branches/1.1.x/modules/google-web-fonts/views/backend/settings/fonts.php
r507471 r511386 51 51 <div data-bind="foreach: fonts" id="google-web-fonts-font-items-wrapper"> 52 52 <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> 54 54 <div data-bind="text: family_name" class="google-web-fonts-font-item-name"></div> 55 55 <div class="google-web-fonts-font-item-charset"></div> -
web-fonts/branches/1.1.x/web-fonts.php
r507489 r511386 4 4 Plugin URI: http://webfonts.fonts.com 5 5 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 7 7 Author: Nick Ohrn of Plugin-Developer.com 8 8 Author URI: http://plugin-developer.com/ … … 14 14 15 15 //// VERSION 16 const VERSION = '1.1.0 ';16 const VERSION = '1.1.0-RC2'; 17 17 18 18 //// KEYS
Note: See TracChangeset
for help on using the changeset viewer.