We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04a53c0 commit 134fc0fCopy full SHA for 134fc0f
content/assets/js/scripts.js
@@ -40,7 +40,7 @@ App.subscribe("init", function(){
40
//
41
// Project Select Show/Hide
42
43
- $(".toggle-projects").on( "click", function( e ) {
+ $(".toggle-projects").bind( "click", function( e ) {
44
e.preventDefault();
45
46
var el = $( this ).toggleClass("active");
@@ -51,7 +51,7 @@ App.subscribe("init", function(){
51
});
52
53
// Project Select Clickoutside
54
- $(".project-select").on( "clickoutside", function( e ) {
+ $(".project-select").bind( "clickoutside", function( e ) {
55
var el = $(".toggle-projects");
56
57
if ( e.target.parentNode === el[0] || e.target === el[0] ) {
0 commit comments