Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Commit

Permalink
Remove an extraneous single quote to fix a syntax error.
Browse files Browse the repository at this point in the history
    Uncaught SyntaxError: Unexpected string  multi-transclude.js:52

Thanks @sabudaye!
  • Loading branch information
zachsnow committed Jul 24, 2014
1 parent 885afdc commit cb2185c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/multi-transclude.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
// Ensure we're transcluding or nothing will work.
if(!transcludeFn){
throw new Error(
'ngMultiTransclude: ' + '
'ngMultiTransclude: ' +
'Illegal use of ngMultiTransclude directive in the template! ' +
'No parent directive that requires a transclusion found. '
);
Expand Down Expand Up @@ -100,4 +100,4 @@
};
}
]);
})();
})();

0 comments on commit cb2185c

Please sign in to comment.