Browse Source

Fixes #744. Also adds android 3 support

pull/795/head
jlukic 11 years ago
parent
commit
b6b0562fd4
2 changed files with 2 additions and 2 deletions
  1. 2
      Gruntfile.js
  2. 2
      server/documents/modules/dimmer.html.eco

2
Gruntfile.js

@ -224,7 +224,7 @@ module.exports = function(grunt) {
'safari 6',
'ie 9',
'bb 10',
'android 4'
'android 3'
]
},
prefixBuild: {

2
server/documents/modules/dimmer.html.eco

@ -198,7 +198,7 @@ type : 'UI Module'
<p>You can display a dimmer by either invoking .dimmer('show') on a section or a dimmer itself. If you choose to dim a dimmable section, a dimmer will automatically be created.</p>
<div class="ignore code">
// these two are the same
$('.ui.dimmable)
$('.ui.dimmable')
.dimmer('show')
;
$('.ui.dimmable .dimmer')

Loading…
Cancel
Save