Skip to content
This repository has been archived by the owner on Aug 20, 2021. It is now read-only.

Commit

Permalink
unify usage of single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
bengtweisse committed Jul 20, 2015
1 parent 2858363 commit ad413da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ng-quill.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'use strict';
var app;
// declare ngQuill module
app = angular.module("ngQuill", []);
app = angular.module('ngQuill', []);

app.service('ngQuillService', function () {
// formats list
Expand Down Expand Up @@ -69,7 +69,7 @@
};
});

app.directive("ngQuillEditor", [
app.directive('ngQuillEditor', [
'$timeout',
'ngQuillService',
function ($timeout, ngQuillService) {
Expand Down

0 comments on commit ad413da

Please sign in to comment.