11/*!
22 :: MojsPlayer :: Player controls for [mojs](mojs.io). Intended to help you to craft `mojs` animation sequences.
33 Oleg Solomka @LegoMushroom 2016 MIT
4- 0.43.14
4+ 0.43.15
55*/
66
77( function webpackUniversalModuleDefinition ( root , factory ) {
@@ -181,7 +181,7 @@ return /******/ (function(modules) { // webpackBootstrap
181181 this . _defaults . precision = 0.1 ;
182182 this . _defaults . name = 'mojs-player' ;
183183
184- this . revision = '0.43.14 ' ;
184+ this . revision = '0.43.15 ' ;
185185
186186 var str = this . _fallbackTo ( this . _o . name , this . _defaults . name ) ;
187187 str += str === this . _defaults . name ? '' : '__' + this . _defaults . name ;
@@ -366,6 +366,7 @@ return /******/ (function(modules) { // webpackBootstrap
366366 this . mojsButton = new _iconButton2 . default ( {
367367 parent : right ,
368368 icon : 'mojs' ,
369+ target : '_blank' ,
369370 link : 'https://github.com/legomushroom/mojs-player' ,
370371 title : 'mo • js' ,
371372 prefix : this . _props . prefix
@@ -7562,6 +7563,7 @@ return /******/ (function(modules) { // webpackBootstrap
75627563 _Module . prototype . _declareDefaults . call ( this ) ;
75637564 this . _defaults . link = null ;
75647565 this . _defaults . title = '' ;
7566+ this . _defaults . target = null ;
75657567 this . _defaults . onPointerDown = null ;
75667568 this . _defaults . onPointerUp = null ;
75677569 this . _defaults . onDoubleTap = null ;
@@ -7577,10 +7579,12 @@ return /******/ (function(modules) { // webpackBootstrap
75777579 var p = this . _props ,
75787580 className = 'button' ,
75797581 tagName = p . link != null ? 'a' : 'div' ;
7582+
75807583 this . _addMainElement ( tagName ) ;
75817584 this . el . classList . add ( CLASSES [ className ] ) ;
75827585 this . el . setAttribute ( 'title' , p . title ) ;
75837586 p . link && this . el . setAttribute ( 'href' , p . link ) ;
7587+ p . link && p . target && this . el . setAttribute ( 'target' , p . target ) ;
75847588 this . _addListeners ( ) ;
75857589
75867590 this . _createRipple ( ) ;
0 commit comments