Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CorePluginsAdmin/angularjs/form/form.directive.js')
-rw-r--r--plugins/CorePluginsAdmin/angularjs/form/form.directive.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/CorePluginsAdmin/angularjs/form/form.directive.js b/plugins/CorePluginsAdmin/angularjs/form/form.directive.js
new file mode 100644
index 0000000000..1ae09df50d
--- /dev/null
+++ b/plugins/CorePluginsAdmin/angularjs/form/form.directive.js
@@ -0,0 +1,39 @@
+/*!
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+
+/**
+ * Usage:
+ * <div piwik-form>
+ */
+(function () {
+ angular.module('piwikApp').directive('piwikForm', piwikForm);
+
+ piwikForm.$inject = ['piwik', '$timeout'];
+
+ function piwikForm(piwik, $timeout){
+
+ return {
+ restrict: 'A',
+ priority: '10',
+ compile: function (element, attrs) {
+
+ return function (scope, element, attrs) {
+
+ $timeout(function () {
+
+ element.find('input[type=text]').keypress(function (e) {
+ var key = e.keyCode || e.which;
+ if (key == 13) {
+ element.find('[piwik-save-button] input').triggerHandler('click');
+ }
+ });
+ });
+ };
+ }
+ };
+ }
+})(); \ No newline at end of file