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

Commit

Permalink
Merge branch 'hotfix-resizer'
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolsen committed Mar 19, 2014
2 parents dbfed5e + a780223 commit 6b878e3
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
THIS CHANGELOG IS AN ATTEMPT TO DOCUMENT CHANGES TO THIS PROJECT.

PL-v0.7.10
- ADD: more responsive pull bar
- THX: thanks to @crohrer for the pull request making the pull bar more responsive

PL-v0.7.9
- ADD: .sass-cache now ignored by default
- ADD: configuration options to disable loading of page follow & auto-reload
Expand Down
2 changes: 1 addition & 1 deletion core/builder.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*!
* Pattern Lab Builder CLI - v0.7.8
* Pattern Lab Builder CLI - v0.7.10
*
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion core/config/config.ini.default
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* If config.ini doesn't exist Pattern Lab will try to create a new version
*/

v = "0.7.9"
v = "0.7.10"

// file extensions to ignore when building or watching the source dir, separate with a comma
ie = "scss,DS_Store,less"
Expand Down
2 changes: 1 addition & 1 deletion core/lib/PatternLab/Builder.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*!
* Pattern Lab Builder Class - v0.7.9
* Pattern Lab Builder Class - v0.7.10
*
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion core/lib/PatternLab/Configurer.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*!
* Pattern Lab Configurer Class - v0.7.9
* Pattern Lab Configurer Class - v0.7.10
*
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion core/lib/PatternLab/Console.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*!
* Pattern Lab Console Class - v0.7.9
* Pattern Lab Console Class - v0.7.10
*
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion core/lib/PatternLab/Generator.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*!
* Pattern Lab Generator Class - v0.7.9
* Pattern Lab Generator Class - v0.7.10
*
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
Expand Down
4 changes: 2 additions & 2 deletions core/lib/PatternLab/Migrator.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

/*!
* Pattern Lab Migrator Class - v0.7.9
* Pattern Lab Migrator Class - v0.7.10
*
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
* Copyright (c) 2014 Dave Olsen http://dmolsen.com
* Licensed under the MIT license
*
* Moves any necessary files from core/ into source/ or public/
Expand Down
2 changes: 1 addition & 1 deletion core/lib/PatternLab/Watcher.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*!
* Pattern Lab Watcher Class - v0.7.9
* Pattern Lab Watcher Class - v0.7.10
*
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion core/styleguide/js/styleguide.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@
$('#sg-cover').mousemove(function(event) {
var viewportWidth;

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

if (viewportWidth > minViewportWidth) {

Expand Down

0 comments on commit 6b878e3

Please sign in to comment.