Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 6b878e3

Browse files
committed
Merge branch 'hotfix-resizer'
2 parents dbfed5e + a780223 commit 6b878e3

File tree

10 files changed

+14
-10
lines changed

10 files changed

+14
-10
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
THIS CHANGELOG IS AN ATTEMPT TO DOCUMENT CHANGES TO THIS PROJECT.
22

3+
PL-v0.7.10
4+
- ADD: more responsive pull bar
5+
- THX: thanks to @crohrer for the pull request making the pull bar more responsive
6+
37
PL-v0.7.9
48
- ADD: .sass-cache now ignored by default
59
- ADD: configuration options to disable loading of page follow & auto-reload

core/builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Builder CLI - v0.7.8
4+
* Pattern Lab Builder CLI - v0.7.10
55
*
66
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

core/config/config.ini.default

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* If config.ini doesn't exist Pattern Lab will try to create a new version
44
*/
55

6-
v = "0.7.9"
6+
v = "0.7.10"
77

88
// file extensions to ignore when building or watching the source dir, separate with a comma
99
ie = "scss,DS_Store,less"

core/lib/PatternLab/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Builder Class - v0.7.9
4+
* Pattern Lab Builder Class - v0.7.10
55
*
66
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

core/lib/PatternLab/Configurer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Configurer Class - v0.7.9
4+
* Pattern Lab Configurer Class - v0.7.10
55
*
66
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

core/lib/PatternLab/Console.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Console Class - v0.7.9
4+
* Pattern Lab Console Class - v0.7.10
55
*
66
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

core/lib/PatternLab/Generator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Generator Class - v0.7.9
4+
* Pattern Lab Generator Class - v0.7.10
55
*
66
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

core/lib/PatternLab/Migrator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Migrator Class - v0.7.9
4+
* Pattern Lab Migrator Class - v0.7.10
55
*
6-
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
6+
* Copyright (c) 2014 Dave Olsen http://dmolsen.com
77
* Licensed under the MIT license
88
*
99
* Moves any necessary files from core/ into source/ or public/

core/lib/PatternLab/Watcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Watcher Class - v0.7.9
4+
* Pattern Lab Watcher Class - v0.7.10
55
*
66
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

core/styleguide/js/styleguide.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@
432432
$('#sg-cover').mousemove(function(event) {
433433
var viewportWidth;
434434

435-
viewportWidth = (origClientX > event.clientX) ? origViewportWidth - (origClientX - event.clientX) : origViewportWidth + (event.clientX - origClientX);
435+
viewportWidth = origViewportWidth + 2*(event.clientX - origClientX);
436436

437437
if (viewportWidth > minViewportWidth) {
438438

0 commit comments

Comments
 (0)