This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am changalberto on github. | |
* I am changalberto (https://keybase.io/changalberto) on keybase. | |
* I have a public key ASBNglBvpcQtrt5u0KaXQpSGl4F9VNnXwgv8noq9-jiQ0wo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
property debug : false | |
-- when the toolbar script icon is clicked | |
-- | |
on run | |
tell application "Finder" | |
try | |
set this_folder to (the target of the front window) as alias | |
on error | |
set this_folder to startup disk | |
end try |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
property debug : false | |
-- when the toolbar script icon is clicked | |
-- | |
on run | |
tell application "Finder" | |
try | |
set this_folder to (the target of the front window) as alias | |
on error | |
set this_folder to startup disk | |
end try |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* jshint node:true */ | |
'use strict'; | |
// generated on 2015-02-12 using generator-gulp-webapp 0.2.0 | |
var gulp = require('gulp'); | |
var $ = require('gulp-load-plugins')(); | |
gulp.task('styles', function () { | |
return gulp.src('app/styles/main.scss') | |
.pipe($.plumber()) | |
.pipe($.rubySass({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($){ | |
// Custom clickout Event | |
$.event.special['click:out'] = { | |
setup: function(){ | |
this.stopPropagation = function(e){ | |
e.stopPropagation(); | |
}; | |
$.event.add(this, 'click', this.stopPropagation); | |
}, | |
teardown: function(){ |