We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc431e8 commit 1084e98Copy full SHA for 1084e98
src/definitions/behaviors/api.js
@@ -852,8 +852,8 @@
852
return settings.on;
853
},
854
templatedURL: function (action) {
855
- action = action || $module.data(metadata.action) || settings.action || false;
856
- url = $module.data(metadata.url) || settings.url || false;
+ action = action || settings.action || $module.data(metadata.action) || false;
+ url = settings.url || $module.data(metadata.url) || false;
857
if (url) {
858
module.debug('Using specified url', url);
859
0 commit comments