Merge "Fixes a typo 'use_strict' -> 'use strict'"

This commit is contained in:
Jenkins 2015-06-17 17:31:25 +00:00 committed by Gerrit Code Review
commit e44d95fa21
3 changed files with 4 additions and 3 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
(function() { (function() {
'use_strict'; 'use strict';
/** /**
* @ngdoc directive * @ngdoc directive

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
(function() { (function() {
'use_strict'; 'use strict';
/** /**
* @ngdoc service * @ngdoc service
@ -88,6 +88,7 @@
function add(type, msg) { function add(type, msg) {
var toast = { var toast = {
type: type === 'error' ? 'danger' : type, type: type === 'error' ? 'danger' : type,
/* jshint validthis:true */
typeMsg: this.types[type], typeMsg: this.types[type],
msg: msg, msg: msg,
cancel: cancel cancel: cancel

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
(function() { (function() {
'use_strict'; 'use strict';
/** /**
* @ngdoc overview * @ngdoc overview