File tree 6 files changed +13
-24
lines changed
6 files changed +13
-24
lines changed Original file line number Diff line number Diff line change 1
1
## [ Unreleased]
2
2
3
+ ### Fixed
4
+ * Node JS link ([ @orlando ] ( https://github.com/orlando ) )
5
+ * Fixing repaints ([ @orlando ] ( https://github.com/orlando ) )
6
+
3
7
## 1.0.0 - 2016-06-12
4
8
### Added
5
9
* First Release!
Original file line number Diff line number Diff line change 22
22
href : /hire-ruby-on-rails-developers
23
23
text : Hire Ruby Developers
24
24
- node_developers :
25
- name : Hire Node Developers
26
- href : /hire-node-developers
27
- text : Hire Node Developers
25
+ name : Hire Node JS Developers
26
+ href : /hire-node-js- developers
27
+ text : Hire Node JS Developers
28
28
- react_developers :
29
29
name : Hire React Developers
30
30
href : /hire-react-developers
Original file line number Diff line number Diff line change 1
1
< script src ="https://code.jquery.com/jquery-3.1.1.slim.min.js " integrity ="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n " crossorigin ="anonymous "> </ script >
2
2
< script src ="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js " integrity ="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb " crossorigin ="anonymous "> </ script >
3
3
< script src ="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js " integrity ="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn " crossorigin ="anonymous "> </ script >
4
- < script type ="text/javascript " src ="https://cdnjs.cloudflare.com/ajax/libs/headroom/0.9.3/headroom.min.js "> </ script >
5
- < script type ="text/javascript " src ="https://cdnjs.cloudflare.com/ajax/libs/headroom/0.9.3/jQuery.headroom.min.js "> </ script >
6
4
< script src ="{{ "/js/main.js" | prepend: site.baseurl }}"> </ script >
7
5
8
6
<!-- Start of Async Drift Code -->
Original file line number Diff line number Diff line change @@ -31,17 +31,19 @@ $animation--mobile-menu: all .2s ease-in-out;
31
31
}
32
32
33
33
.mobile-menu-overlay {
34
- z-index : z (' mobile-menu-overlay-unactive' );
35
34
background-color : rgba ($black , 0.3 );
35
+ display : none ;
36
+ height : 100% ;
37
+ left : 0 ;
36
38
opacity : 0 ;
37
39
position : fixed ;
38
- height : 100% ;
39
- width : 100% ;
40
40
top : 0 ;
41
- left : 0 ;
41
+ width : 100% ;
42
+ z-index : z (' mobile-menu-overlay-unactive' );
42
43
43
44
& .active {
44
45
opacity : 1 ;
46
+ display : block ;
45
47
z-index : z (' mobile-menu-overlay' );
46
48
}
47
49
}
File renamed without changes.
Original file line number Diff line number Diff line change @@ -25,27 +25,12 @@ var HashLabs = {
25
25
} ,
26
26
27
27
_bindEvents : function _bindEvents ( ) {
28
- this . _handleNavBarEvents ( ) ;
29
28
this . _handleMobileNavEvents ( ) ;
30
29
this . _handleVideoLoop ( ) ;
31
30
this . _preventOrphans ( ) ;
32
31
this . _handleAnalyticsEvents ( ) ;
33
32
} ,
34
33
35
- _handleNavBarEvents : function _handleNavBarEvents ( ) {
36
- var that = this ;
37
-
38
- this . navBar . headroom ( {
39
- onUnpin : function ( ) {
40
- $ ( this ) . toggleClass ( this . classes . unpinned , ! that . linkWasClicked ) ;
41
- $ ( this ) . toggleClass ( this . classes . pinned , that . linkWasClicked ) ;
42
- that . linkWasClicked = false ;
43
-
44
- return ;
45
- }
46
- } ) ;
47
- } ,
48
-
49
34
_preventOrphans : function _preventOrphans ( ) {
50
35
/*
51
36
We add a non breaking space ( ) between the last two
You can’t perform that action at this time.
0 commit comments