mirror of
https://github.com/pattern-lab/patternlab-php.git
synced 2025-01-29 11:59:16 +01:00
Merge branch 'hotfix-resizer'
This commit is contained in:
commit
6b878e34b6
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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/
|
||||
|
@ -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
|
||||
|
@ -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) {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user