webfontloader 1.6.23 → 1.6.24

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4b6c73ede1d060e9c0fe3bbd517649b09c012a47
4
- data.tar.gz: df00b3e3ba7c35e0a90fc7f39a6348bd3354c2b6
3
+ metadata.gz: 02ef270223432fc5bc4726e00a59e156b9d8882f
4
+ data.tar.gz: 8c378598d296b5cedfb1880b9c99360948df5b0f
5
5
  SHA512:
6
- metadata.gz: 88596532588006f17cc96bb2c8d1b98d27c82fdd8a4ac0ffcb537fc260fafee71a75a83685e7491d638b2f85b600a6f38cba13f4b2f1dc3b881463d81b1583c6
7
- data.tar.gz: baf0920a3ddfb422bdb4cc742567bf0e28697ac38e4cf0a4ed91d27691d7c4d9e409e7a7e4cd600774f4e4cd9e08bf94853b86a6e1fb18af94059d1c0d02a705
6
+ metadata.gz: 5866dad5386a6f34b863ea1637ca033eeb10269708b09e88047ac5fb9305682444bda2e966055ad305660d01ac58855478ecf0f15cad9dc8e70cbdb6defa89a0
7
+ data.tar.gz: c877f17e32807edd9b147042aa837276d9f9482665d983bfabdcdc6a7deb61da698f779db637f920b00a1e77f643def566f5812d3238b0a526990d63ba819751
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ v1.6.24 (March 20, 2016)
2
+
3
+ * Fix type annotation in DomHelper.
4
+
1
5
  v1.6.23 (March 20, 2016)
2
6
 
3
7
  * Add bower.json
@@ -3,7 +3,7 @@ require 'yaml'
3
3
  require 'webfontloader/modules'
4
4
 
5
5
  module WebFontLoader
6
- VERSION = '1.6.23'
6
+ VERSION = '1.6.24'
7
7
 
8
8
  ProjectRoot = File.expand_path(File.dirname(__FILE__) + "/..")
9
9
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webfontloader",
3
- "version": "1.6.22",
3
+ "version": "1.6.23",
4
4
  "description": "Web Font Loader gives you added control when using linked fonts via @font-face.",
5
5
  "main": "webfontloader.js",
6
6
  "scripts": {
@@ -360,7 +360,7 @@ goog.scope(function () {
360
360
  for (var i = 0; i < sheets.length; i++) {
361
361
  if (sheets[i].href && sheets[i].href.indexOf(href) !== -1 && sheets[i].media) {
362
362
  /**
363
- * @type {string|!MediaList}
363
+ * @type {string|MediaList|null}
364
364
  */
365
365
  var media = sheets[i].media;
366
366
 
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'webfontloader'
16
- s.version = '1.6.23'
16
+ s.version = '1.6.24'
17
17
  s.date = '2016-03-20'
18
18
 
19
19
  ## Make sure your summary is short. The description may be as long
@@ -1,4 +1,4 @@
1
- /* Web Font Loader v1.6.23 - (c) Adobe Systems, Google. License: Apache 2.0 */
1
+ /* Web Font Loader v1.6.24 - (c) Adobe Systems, Google. License: Apache 2.0 */
2
2
  (function(){function aa(a,b,d){return a.call.apply(a.bind,arguments)}function ba(a,b,d){if(!a)throw Error();if(2<arguments.length){var c=Array.prototype.slice.call(arguments,2);return function(){var d=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(d,c);return a.apply(b,d)}}return function(){return a.apply(b,arguments)}}function p(a,b,d){p=Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?aa:ba;return p.apply(null,arguments)}var q=Date.now||function(){return+new Date};function ca(a,b){this.a=a;this.m=b||a;this.c=this.m.document}var da=!!window.FontFace;function t(a,b,d,c){b=a.c.createElement(b);if(d)for(var e in d)d.hasOwnProperty(e)&&("style"==e?b.style.cssText=d[e]:b.setAttribute(e,d[e]));c&&b.appendChild(a.c.createTextNode(c));return b}function u(a,b,d){a=a.c.getElementsByTagName(b)[0];a||(a=document.documentElement);a.insertBefore(d,a.lastChild)}function v(a){a.parentNode&&a.parentNode.removeChild(a)}
3
3
  function w(a,b,d){b=b||[];d=d||[];for(var c=a.className.split(/\s+/),e=0;e<b.length;e+=1){for(var f=!1,g=0;g<c.length;g+=1)if(b[e]===c[g]){f=!0;break}f||c.push(b[e])}b=[];for(e=0;e<c.length;e+=1){f=!1;for(g=0;g<d.length;g+=1)if(c[e]===d[g]){f=!0;break}f||b.push(c[e])}a.className=b.join(" ").replace(/\s+/g," ").replace(/^\s+|\s+$/,"")}function y(a,b){for(var d=a.className.split(/\s+/),c=0,e=d.length;c<e;c++)if(d[c]==b)return!0;return!1}
4
4
  function z(a){if("string"===typeof a.f)return a.f;var b=a.m.location.protocol;"about:"==b&&(b=a.a.location.protocol);return"https:"==b?"https:":"http:"}function ea(a){return a.m.location.hostname||a.a.location.hostname}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webfontloader
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.23
4
+ version: 1.6.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Carver