mirror of https://github.com/twbs/bootstrap.git
				
				
				
			Update a few source files to comply to new JSCS rules
This commit is contained in:
		
							parent
							
								
									09c2e41ec4
								
							
						
					
					
						commit
						587451ad9a
					
				|  | @ -233,7 +233,7 @@ window.onload = function () { // wait for load in a dumb way because B-0 | |||
|       if (('variables.less' === filename) && vars) lessSource += generateCustomLess(vars) | ||||
|     }) | ||||
| 
 | ||||
|     lessSource = lessSource.replace(/@import[^\n]*/gi, '') //strip any imports
 | ||||
|     lessSource = lessSource.replace(/@import[^\n]*/gi, '') // strip any imports
 | ||||
|     return lessSource | ||||
|   } | ||||
| 
 | ||||
|  |  | |||
|  | @ -202,7 +202,7 @@ | |||
|     $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) { | ||||
|       var href | ||||
|       var $this   = $(this) | ||||
|       var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
 | ||||
|       var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
 | ||||
|       var options = $.extend({}, $target.data(), $this.data()) | ||||
|       var slideIndex = $this.attr('data-slide-to') | ||||
|       if (slideIndex) options.interval = false | ||||
|  |  | |||
|  | @ -156,7 +156,7 @@ | |||
|       var $this   = $(this) | ||||
|       var target  = $this.attr('data-target') | ||||
|           || e.preventDefault() | ||||
|           || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
 | ||||
|           || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
 | ||||
|       var $target = $(target) | ||||
|       var data    = $target.data('bs.collapse') | ||||
|       var option  = data ? 'toggle' : $this.data() | ||||
|  |  | |||
|  | @ -106,7 +106,7 @@ | |||
| 
 | ||||
|       if (!selector) { | ||||
|         selector = $this.attr('href') | ||||
|         selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
 | ||||
|         selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
 | ||||
|       } | ||||
| 
 | ||||
|       var $parent = selector && $(selector) | ||||
|  |  | |||
|  | @ -267,13 +267,13 @@ | |||
|     $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { | ||||
|       var $this   = $(this) | ||||
|       var href    = $this.attr('href') | ||||
|       var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
 | ||||
|       var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
 | ||||
|       var option  = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) | ||||
| 
 | ||||
|       if ($this.is('a')) e.preventDefault() | ||||
| 
 | ||||
|       $target.one('show.bs.modal', function (showEvent) { | ||||
|         if (showEvent.isDefaultPrevented()) return  // only register focus restorer if modal will actually get shown
 | ||||
|         if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
 | ||||
|         $target.one('hidden.bs.modal', function () { | ||||
|           $this.is(':visible') && $this.trigger('focus') | ||||
|         }) | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue