mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-23 05:25:47 +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,...'
|
* @param str 'key1,key2,...'
|
||||||
* @returns {key1:true, key2:true, ...}
|
* @returns {object} in the form of {key1:true, key2:true, ...}
|
||||||
*/
|
*/
|
||||||
function makeMap(str){
|
function makeMap(str){
|
||||||
var obj = {}, items = str.split(","), i;
|
var obj = {}, items = str.split(","), i;
|
||||||
|
|
@ -233,7 +233,7 @@ function isJavaScriptUrl(url) {
|
||||||
/**
|
/**
|
||||||
* create an HTML/XML writer which writes to buffer
|
* create an HTML/XML writer which writes to buffer
|
||||||
* @param {Array} buf use buf.jain('') to get out sanitized html string
|
* @param {Array} buf use buf.jain('') to get out sanitized html string
|
||||||
* @returns {
|
* @returns {object} in the form of {
|
||||||
* start: function(tag, attrs, unary) {},
|
* start: function(tag, attrs, unary) {},
|
||||||
* end: function(tag) {},
|
* end: function(tag) {},
|
||||||
* chars: function(text) {},
|
* chars: function(text) {},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue