Skip to content

Commit bb934eb

Browse files
committed
Merge branch 'release/0.4.3'
2 parents 03e1b4d + cd712fa commit bb934eb

7 files changed

+11
-8
lines changed

angular-highlightjs.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*! angular-highlightjs
2-
version: 0.4.2
2+
version: 0.4.3
33
build date: 2015-07-28
44
author: Chih-Hsuan Fan
55
https://github.com/pc035860/angular-highlightjs.git */
@@ -44,6 +44,7 @@ ngModule.provider('hljsService', function () {
4444
return angular.copy(_hljsOptions);
4545
},
4646
$get: function () {
47+
(hljs.configure || angular.noop)(_hljsOptions);
4748
return hljs;
4849
}
4950
};

angular-highlightjs.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-highlightjs",
3-
"version": "0.4.2",
3+
"version": "0.4.3",
44
"description": "AngularJS directive for syntax highlighting with highlight.js.",
55
"main": "./build/angular-highlightjs.js",
66
"ignore": [

build/angular-highlightjs.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*! angular-highlightjs
2-
version: 0.4.2
2+
version: 0.4.3
33
build date: 2015-07-28
44
author: Chih-Hsuan Fan
55
https://github.com/pc035860/angular-highlightjs.git */
@@ -44,6 +44,7 @@ ngModule.provider('hljsService', function () {
4444
return angular.copy(_hljsOptions);
4545
},
4646
$get: function () {
47+
(hljs.configure || angular.noop)(_hljsOptions);
4748
return hljs;
4849
}
4950
};

build/angular-highlightjs.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-highlightjs",
3-
"version": "0.4.2",
3+
"version": "0.4.3",
44
"description": "AngularJS directive for syntax highlighting with highlight.js",
55
"main": "./build/angular-highlightjs.js",
66
"directories": {},

src/angular-highlightjs.js

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ ngModule.provider('hljsService', function () {
2828
return angular.copy(_hljsOptions);
2929
},
3030
$get: function () {
31+
(hljs.configure || angular.noop)(_hljsOptions);
3132
return hljs;
3233
}
3334
};

0 commit comments

Comments
 (0)