mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
fix closure compile warnings
This commit is contained in:
parent
72b7a1c531
commit
943377a091
1 changed files with 2 additions and 2 deletions
|
|
@ -197,7 +197,7 @@ var htmlParser = function( html, handler ) {
|
|||
|
||||
/**
|
||||
* @param str 'key1,key2,...'
|
||||
* @returns {key1:true, key2:true, ...}
|
||||
* @returns {object} in the form of {key1:true, key2:true, ...}
|
||||
*/
|
||||
function makeMap(str){
|
||||
var obj = {}, items = str.split(","), i;
|
||||
|
|
@ -233,7 +233,7 @@ function isJavaScriptUrl(url) {
|
|||
/**
|
||||
* create an HTML/XML writer which writes to buffer
|
||||
* @param {Array} buf use buf.jain('') to get out sanitized html string
|
||||
* @returns {
|
||||
* @returns {object} in the form of {
|
||||
* start: function(tag, attrs, unary) {},
|
||||
* end: function(tag) {},
|
||||
* chars: function(text) {},
|
||||
|
|
|
|||
Loading…
Reference in a new issue