semantic-ui-less
Advanced tools
Comparing version 2.0.2 to 2.0.3
@@ -992,3 +992,3 @@ /*! | ||
flags : /^\/(.*)\/(.*)?/, | ||
url : /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/i | ||
url : /(https?:\/\/(?:www\.|(?!www))[^\s\.]+\.[^\s]{2,}|www\.[^\s]+\.[^\s]{2,})/i | ||
}, | ||
@@ -1251,3 +1251,3 @@ | ||
url: function(value) { | ||
return $.fn.form.settings.regExp.url.match(value); | ||
return $.fn.form.settings.regExp.url.test(value); | ||
} | ||
@@ -1254,0 +1254,0 @@ } |
@@ -180,2 +180,3 @@ /*! | ||
module.toggle(); | ||
event.preventDefault(); | ||
}, | ||
@@ -182,0 +183,0 @@ keydown: function(event) { |
@@ -411,6 +411,4 @@ /*! | ||
$dimmable.dimmer('hide', function() { | ||
if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) { | ||
module.remove.clickaway(); | ||
module.remove.screenHeight(); | ||
} | ||
module.remove.clickaway(); | ||
module.remove.screenHeight(); | ||
}); | ||
@@ -501,10 +499,14 @@ } | ||
}, | ||
screenHeight: function() { | ||
if(module.cache.height > module.cache.pageHeight) { | ||
module.debug('Removing page height'); | ||
$body | ||
.css('height', '') | ||
; | ||
bodyStyle: function() { | ||
if($body.attr('style') === '') { | ||
module.verbose('Removing style attribute'); | ||
$body.removeAttr('style'); | ||
} | ||
}, | ||
screenHeight: function() { | ||
module.debug('Removing page height'); | ||
$body | ||
.css('height', '') | ||
; | ||
}, | ||
keyboardShortcuts: function() { | ||
@@ -511,0 +513,0 @@ module.verbose('Removing keyboard shortcuts'); |
@@ -1222,3 +1222,3 @@ /*! | ||
// popup should be removed from page on hide | ||
preserve : true, | ||
preserve : false, | ||
@@ -1225,0 +1225,0 @@ // popup should not close when being hovered on |
@@ -556,3 +556,6 @@ /*! | ||
currentAnimation: function() { | ||
return module.cache.animation || false; | ||
return (module.cache && module.cache.animation !== undefined) | ||
? module.cache.animation | ||
: false | ||
; | ||
}, | ||
@@ -559,0 +562,0 @@ currentDirection: function() { |
@@ -8,3 +8,3 @@ var | ||
summary : 'Semantic UI - LESS Release of Semantic UI', | ||
version : '2.0.2', | ||
version : '2.0.3', | ||
git : 'git://github.com/Semantic-Org/Semantic-UI-LESS.git', | ||
@@ -11,0 +11,0 @@ }); |
{ | ||
"name": "semantic-ui-less", | ||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
"title": "Semantic UI", | ||
@@ -5,0 +5,0 @@ "description": "LESS Only distribution of Semantic UI", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2543567
20759