mui-sass 0.6.1 → 0.6.2

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: b9ce817312c52507d3f3802adf56ef3a1909ec19
4
- data.tar.gz: c6f73b404233163cc052e563d48d6dfe30612703
3
+ metadata.gz: 3985b2e7924a24e6d27d167cca3b461317932833
4
+ data.tar.gz: 782605c7bde0d8f3f4fbe9eeeb32018314ee5fe5
5
5
  SHA512:
6
- metadata.gz: 6f588b1fd60efca14a051a91a4a3fb8a37972150babc7eaff6a41e9e156ba69ebf66b58022194cc5644588de6b6554f60dd0fd951d205f5a080f5491835d4d8b
7
- data.tar.gz: 244b9acf89a46b989d83cea87a0aa5c654093793698270de56f559f273146304790328cce85247617f7ec9e30e153dad543e293a3ff8e66c3516877f7fde7b9d
6
+ metadata.gz: 819eb46fb300b91f0ad9a3516977fd6b83f56d1116f43fad5c9ab6e1e8761304a3890bcb9025a87fb13fa673e445f74c3269745ef81dc6685e9ec557745660b1
7
+ data.tar.gz: df143b41d3c60c67c2c74fc743fe7d9e1c60876ba91af003aa1246ea99cc07ab6a2ab392a37fc4bc4a579ee00e06cf28250af1debce834bf04039fafc966ad57
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 0.6.2 (2016-06-27)
2
+
3
+ - Update assets to match upstream version
4
+
5
+ Framework version: MUI v0.6.2
6
+
1
7
  ## 0.6.1 (2016-06-27)
2
8
 
3
9
  - Update assets to match upstream version
@@ -1,5 +1,5 @@
1
1
  module Mui
2
2
  module Sass
3
- VERSION = '0.6.1'
3
+ VERSION = '0.6.2'
4
4
  end
5
5
  end
@@ -739,8 +739,9 @@ function disableScrollLockFn() {
739
739
  * requestAnimationFrame polyfilled
740
740
  * @param {Function} callback - The callback function
741
741
  */
742
- function requestAnimationFrame(callback) {
743
- if (window.requestAnimationFrame) requestAnimationFrame(callback);
742
+ function requestAnimationFrameFn(callback) {
743
+ var fn = window.requestAnimationFrame;
744
+ if (fn) fn(callback);
744
745
  else setTimeout(callback, 0);
745
746
  }
746
747
 
@@ -777,7 +778,7 @@ module.exports = {
777
778
  raiseError: raiseErrorFn,
778
779
 
779
780
  /** Request animation frame */
780
- requestAnimationFrame: requestAnimationFrame,
781
+ requestAnimationFrame: requestAnimationFrameFn,
781
782
 
782
783
  /** Support Pointer Events check */
783
784
  supportsPointerEvents: supportsPointerEventsFn
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mui-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitriy Tarasov