Skip to content

Commit

Permalink
small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
LoganWade committed Jun 16, 2014
1 parent f4aa294 commit 7305db8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ test
.sass-cache
.tmp
.DS_Store
npm-debug.log
/bower_components/

bower_components/
12 changes: 9 additions & 3 deletions app/scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ require.config({
'jquery': 'bower_components/jquery/jquery',
'underscore': 'bower_components/underscore-amd/underscore',
'backbone': 'bower_components/backbone-amd/backbone',
'leanModal': 'bower_components/jquery-leanmodal/jquery.leanModal'
'leanModal': 'bower_components/jquery-leanmodal/jquery.leanModal',
'facebook': '//connect.facebook.net/en_US/all'
},
'shim' : {
'leanModal':['jquery']
'leanModal':['jquery'],
'facebook' : {
exports: 'FB'
}
}
});

require(['fb']);

require(['scripts/views/home'], function(HomeView) {
new HomeView();
});
});
2 changes: 1 addition & 1 deletion app/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ a{
input,select{
&:active, &:focus{
outline:none;
@inlcude box-shadow(none);
@include box-shadow(none);
}
}

Expand Down

0 comments on commit 7305db8

Please sign in to comment.