Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

weather-custom.js 423B

1234567891011
  1. $('.icon-list-demo .outer-ellipsis').on('click',function(){
  2. var font_class= ($(this).children('.wi').attr('class'));
  3. if(!$(this).hasClass('svg-icon')){
  4. $('#myModal').modal('show');
  5. $('#icon').removeClass();
  6. $('#icon').addClass(font_class);
  7. $('#icon').addClass('fa-lg');
  8. $('#name').val(font_class);
  9. $('#code').val('<i class="'+font_class+'"></i>');
  10. }
  11. });