This file contains 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 nickclaw on github. | |
* I am nickclaw (https://keybase.io/nickclaw) on keybase. | |
* I have a public key ASDKGUKRc7ZSEJ0ege1fJSsI8LndMin3F9Dztb00SUwCVQo | |
To claim this, I am signing this object: |
This file contains 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
angular.module('module').factory('profile', [ | |
function() { | |
var user = window.__user; | |
delete window.__user; | |
return user; | |
} | |
]); |
This file contains 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
/** | |
* Loader | |
*/ | |
(function() { | |
var cache = {}; | |
/** | |
* Initialize loader | |
* Looks for init-script tag and starts the loading process |
This file contains 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
{View, $} = require 'atom' | |
module.exports = class MessagePaneView extends View | |
@content:(params) => | |
@div class: 'am-panel tool-panel panel-bottom', => | |
@div class: 'panel-heading', params.title, => | |
@div click: 'detach', class: 'close', 'X' | |
@div outlet:'body', style:'max-height:170px;overflow-y:scroll;',class: 'panel-body padded' |