Ron F. wrote: 
> Interesting. I looked at the normal release code, version 1.1.0, and it
> is all minified. The Git checkout however, your code is not minified but
> the Vuetify lib code is; however, I don't see the symbol "v" referenced
> except in the Vuetify code.
> 
> In the lib code, there are functions like: Ht=function(t,e){return void
> 0===e&&(e="base"),"--v-"+t+"-"+e} and I cannot tell if v will be defined
> or not.
> 
> Regardless Craig, maybe there is a bug in the minifier? Is it possible
> for you to load your plugin with no minification in the release version?

I've tracked the issue down, and it is not related to minification. As
stated by others, you need to be using Material in landscape with a
width >= 900px *and* have "Don't stop the music" enabled *and * repeat
off. When DSTM is enabled, and repeat is off, I use an "infinity" icon
in place of repeat. Pressing on this should allow you to alter DSTM.
However, in the desktop/wide case the signal is not connected properly.
For those who want to manually fix for now (or even just to verify the
fix) - edit "nowplaying-page.min.js" and change:


Code:
--------------------
    
  @click="v"
  
--------------------


to:


Code:
--------------------
    
  @click="bus.$emit('dlg.open', 'dstm')"
  
--------------------


This "v" is the undefined item.


------------------------------------------------------------------------
cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to