Fix lint errors

Change-Id: I6d198498a7bd480a2b0081bff20ba89c3941ad48
This commit is contained in:
Becky Siegel 2016-12-19 17:59:48 -08:00
parent 194d5095f8
commit 5c611bf1a0
2 changed files with 4 additions and 4 deletions

View File

@ -321,7 +321,7 @@
_handleQuote: function(e) {
e.preventDefault();
this.fire( 'create-reply-comment', this._getEventPayload({quote: true}),
this.fire('create-reply-comment', this._getEventPayload({quote: true}),
{bubbles: false});
},

View File

@ -57,13 +57,13 @@
/**
* Truncates URLs to display filename only
* @example
* Example
* // returns '.../text.html'
* util.truncatePath.('dir/text.html');
* @example
* Example
* // returns 'text.html'
* util.truncatePath.('text.html');
* @returns {String} Returns the truncated value of a URL.
* @return {String} Returns the truncated value of a URL.
*/
util.truncatePath = function(path) {
var pathPieces = path.split('/');