Skip to content

Commit

Permalink
🔨 refactor(util): move trigger-no-bubble under util
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Feb 11, 2017
1 parent 13b2de2 commit 5ed7b39
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/being.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const wait = require('./wait')
const { applyIfFunction, ifNumElse } = require('./util')
const triggerNoBubble = require('./trigger-no-bubble')
const { applyIfFunction, ifNumElse, triggerNoBubble } = require('./util')

const SHOWING_CLASS = 'showing'
const SHOWN_CLASS = 'shown'
Expand Down
1 change: 1 addition & 0 deletions src/util/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
exports.error = require('./error')
exports.ifNumElse = require('./if-num-else')
exports.applyIfFunction = require('./apply-if-function')
exports.triggerNoBubble = require('./trigger-no-bubble')
File renamed without changes.

0 comments on commit 5ed7b39

Please sign in to comment.