aboutsummaryrefslogtreecommitdiff
path: root/views/default/js
diff options
context:
space:
mode:
authorEvan Winslow <evan@elgg.org>2011-03-18 21:28:05 -0700
committerEvan Winslow <evan@elgg.org>2011-03-18 21:28:05 -0700
commitdff32c364b99e57db5ea891ce93f7ab5df9b3258 (patch)
treeff0cd57619974d1ed9e8c9327434cebba9c7a1f6 /views/default/js
parente45dc237367658ed750701d1055e975eaef63f19 (diff)
downloadelgg-dff32c364b99e57db5ea891ce93f7ab5df9b3258.tar.gz
elgg-dff32c364b99e57db5ea891ce93f7ab5df9b3258.tar.bz2
Removed custom html5 function in favor of core function
Diffstat (limited to 'views/default/js')
-rw-r--r--views/default/js/html5.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/views/default/js/html5.php b/views/default/js/html5.php
deleted file mode 100644
index ba2a517d9..000000000
--- a/views/default/js/html5.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-global $CONFIG;
-
-include $CONFIG->pluginspath.'html5/js/Modernizr-1.5.min.js';
-
-$placeholder_script = $vars['url'].'mod/html5/js/jquery.placeholder-1.0.1.js';
-?>
-
-if (!Modernizr.input.placeholder) {
- $(function() { $('[placeholder]').placeholder({className:'html5-placeholder'}); });
- document.write('<script src="<?php echo $placeholder_script; ?>"></script>');
-}