Skip to content
This repository has been archived by the owner on Jul 16, 2022. It is now read-only.

Commit

Permalink
Fix for Twitter Bootstrap and UIkit wrappers (caused by changes in Pi…
Browse files Browse the repository at this point in the history
…ckMeUp internals)
  • Loading branch information
nazar-pc committed Oct 25, 2016
1 parent 4adb1aa commit 5bdc4d7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion js/jquery.pickmeup.twitter-bootstrap.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ do ($ = jQuery) ->
$.fn.pickmeup_twitter_bootstrap = (initial_options) ->
this.each ->
pickmeup(this, initial_options)
$(this.pickmeup)
$(this.__pickmeup.element)
.removeClass('pickmeup')
.addClass('pickmeup-twitter-bootstrap well')
.css('padding', 0)
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.pickmeup.twitter-bootstrap.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/jquery.pickmeup.uikit.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ do ($ = jQuery) ->
$.fn.pickmeup_uikit = (initial_options) ->
this.each ->
pickmeup(initial_options)
$(this.pickmeup)
$(this.__pickmeup.element)
.removeClass('pickmeup')
.addClass('pickmeup-uikit uk-panel-box')
.css('padding', 0)
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.pickmeup.uikit.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5bdc4d7

Please sign in to comment.