Skip to content

Commit 134fc0f

Browse files
committed
Not 1.7 yet
1 parent 04a53c0 commit 134fc0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/assets/js/scripts.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ App.subscribe("init", function(){
4040
//
4141
// Project Select Show/Hide
4242
//
43-
$(".toggle-projects").on( "click", function( e ) {
43+
$(".toggle-projects").bind( "click", function( e ) {
4444
e.preventDefault();
4545

4646
var el = $( this ).toggleClass("active");
@@ -51,7 +51,7 @@ App.subscribe("init", function(){
5151
});
5252

5353
// Project Select Clickoutside
54-
$(".project-select").on( "clickoutside", function( e ) {
54+
$(".project-select").bind( "clickoutside", function( e ) {
5555
var el = $(".toggle-projects");
5656

5757
if ( e.target.parentNode === el[0] || e.target === el[0] ) {

0 commit comments

Comments
 (0)