This repository was archived by the owner on Feb 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 10 files changed +14
-10
lines changed Expand file tree Collapse file tree 10 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 1
1
THIS CHANGELOG IS AN ATTEMPT TO DOCUMENT CHANGES TO THIS PROJECT.
2
2
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
+
3
7
PL-v0.7.9
4
8
- ADD: .sass-cache now ignored by default
5
9
- ADD: configuration options to disable loading of page follow & auto-reload
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
/*!
4
- * Pattern Lab Builder CLI - v0.7.8
4
+ * Pattern Lab Builder CLI - v0.7.10
5
5
*
6
6
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
7
7
* Licensed under the MIT license
Original file line number Diff line number Diff line change 3
3
* If config.ini doesn't exist Pattern Lab will try to create a new version
4
4
*/
5
5
6
- v = "0.7.9 "
6
+ v = "0.7.10 "
7
7
8
8
// file extensions to ignore when building or watching the source dir, separate with a comma
9
9
ie = "scss,DS_Store,less"
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
/*!
4
- * Pattern Lab Builder Class - v0.7.9
4
+ * Pattern Lab Builder Class - v0.7.10
5
5
*
6
6
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
7
7
* Licensed under the MIT license
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
/*!
4
- * Pattern Lab Configurer Class - v0.7.9
4
+ * Pattern Lab Configurer Class - v0.7.10
5
5
*
6
6
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
7
7
* Licensed under the MIT license
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
/*!
4
- * Pattern Lab Console Class - v0.7.9
4
+ * Pattern Lab Console Class - v0.7.10
5
5
*
6
6
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
7
7
* Licensed under the MIT license
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
/*!
4
- * Pattern Lab Generator Class - v0.7.9
4
+ * Pattern Lab Generator Class - v0.7.10
5
5
*
6
6
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
7
7
* Licensed under the MIT license
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
/*!
4
- * Pattern Lab Migrator Class - v0.7.9
4
+ * Pattern Lab Migrator Class - v0.7.10
5
5
*
6
- * Copyright (c) 2014 Dave Olsen, http://dmolsen.com
6
+ * Copyright (c) 2014 Dave Olsen http://dmolsen.com
7
7
* Licensed under the MIT license
8
8
*
9
9
* Moves any necessary files from core/ into source/ or public/
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
/*!
4
- * Pattern Lab Watcher Class - v0.7.9
4
+ * Pattern Lab Watcher Class - v0.7.10
5
5
*
6
6
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
7
7
* Licensed under the MIT license
Original file line number Diff line number Diff line change 432
432
$ ( '#sg-cover' ) . mousemove ( function ( event ) {
433
433
var viewportWidth ;
434
434
435
- viewportWidth = ( origClientX > event . clientX ) ? origViewportWidth - ( origClientX - event . clientX ) : origViewportWidth + ( event . clientX - origClientX ) ;
435
+ viewportWidth = origViewportWidth + 2 * ( event . clientX - origClientX ) ;
436
436
437
437
if ( viewportWidth > minViewportWidth ) {
438
438
You can’t perform that action at this time.
0 commit comments