Expected to live in a parent directory and then operate on files in child directories
PS C:\Releases> .\md5.ps1 .\App_v1\CompiledPackage.zip
Expected to live in a parent directory and then operate on files in child directories
PS C:\Releases> .\md5.ps1 .\App_v1\CompiledPackage.zip
contents | |
\posts | |
\2013 | |
\first-post.md | |
\second-post.md | |
\2014 | |
\third-post.md | |
\fourth-post.md |
(function() { | |
var $wrappingDiv = $('div[webpartid]').last(); | |
//console.log($wrappingDiv.attr('webpartid')); | |
$(document).ready(function() { | |
var inDesignMode = null; | |
if($('#MSOLayout_InDesignMode')) { | |
inDesignMode = $('#MSOLayout_InDesignMode').val(); | |
} |
var mongoose = require('mongoose'), | |
util = require('util'), | |
config = require('./config.json'); | |
var connection_string = util.format( | |
'mongodb://%s:%s@%s:%d/%s', | |
config.mongo.user, | |
config.mongo.password, | |
config.mongo.hostname, | |
config.mongo.port, |
{ | |
"servers": [ | |
{ | |
"port" : 8000, | |
"labels": ["public"] | |
} | |
], | |
"plugins": { | |
"capi-web": { } | |
} |
I hereby claim:
To claim this, I am signing this object:
import { test, moduleForModel } from 'ember-qunit'; | |
moduleForModel('user-profile', 'UserProfile', { | |
// Specify the other units that are required for this test. | |
needs: [] | |
}); | |
test('display name works', function() { | |
var model = this.subject(); | |
var store = this.store(); |
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
didInsertElement: function() { | |
var $this = this.$(), | |
$actions = Ember.$('.actions', $this); | |
$this.hover(function() { | |
$actions.slideDown(); | |
}, function() { | |
$actions.slideUp(); |
// services/clock.js | |
import Ember from 'ember'; | |
export default Ember.Object.extend({ | |
pulse: Ember.computed.oneWay('_seconds').readOnly(), | |
minutePulse: Ember.computed.oneWay('_minutes').readOnly(), | |
tick: function () { | |
var clock = this; | |
Ember.run.later(function () { | |
var seconds = clock.get('_seconds'); |
I have a lock action defined on my notes route. When I navigate directly to note/edit and the this.send('lock', model);
throws an error because nothing handled it, but when I go to note and click the edit button the action goes to the notes route and it all works as I expect. Why is the action handled differently on a direct navigation to note/edit compared to note then clicking edit?