- git revert -m 1
- git reset --hard HEAD~1
- git push -f
//Copy the collection to prevent deleting data | |
db.nameCollection.copyTo('newNameCollection') | |
//See the collections in the database | |
db.getCollectionNames() | |
//See if exist duplicate data | |
db.orders.aggregate([ | |
{ | |
$group: { |
var file = fileOrFileArray[i]; | |
if (file.indexOf("data:application") >= 0) { | |
var fileData = Windows.Security.Cryptography.CryptographicBuffer.decodeFromBase64String(file.split(',')[1]); | |
var memoryStream = new Windows.Storage.Streams.InMemoryRandomAccessStream(); | |
var dataWriter = new Windows.Storage.Streams.DataWriter(memoryStream); | |
dataWriter.writeBuffer(fileData); | |
dataWriter.storeAsync().done(function () { |
var pdfString = doc.output('datauristring'); //base64 string from jsPDF | |
if (window.cordova && window.cordova.plugins.email) { | |
var email = { | |
//to: '[email protected]', | |
//cc: '[email protected]', | |
//bcc: ['[email protected]'], | |
attachments: [ | |
generateAttachment(pdfString, "myFileName.pdf") |
services.factory('PDF', ['$q', function ($q) { | |
var createSubtopic = function (doc, subtopic, top, pageWidth) { | |
doc.autoTable([ | |
{ title: "Title", dataKey: "title" }, | |
{ title: "Value", dataKey: "value" } | |
], [ | |
{ title: "Estándar", value: subtopic.standard }, | |
{ title: "Tema", value: subtopic.topic }, |
var game = new Phaser.Game(1024, 768, Phaser.AUTO, '', { | |
init: function () { | |
this.scale.scaleMode = Phaser.ScaleManager.SHOW_ALL; | |
this.scale.pageAlignHorizontally = true; | |
this.scale.pageAlignVertically = true; | |
//Load the plugin | |
this.game.kineticScrolling = this.game.plugins.add(Phaser.Plugin.KineticScrolling); | |
}, | |
create: function () { |
(function() { | |
'use strict'; | |
angular | |
.module('App') | |
.factory('Files', Files); | |
Files.$inject = ['$window', '$cordovaFileTransfer', '$ionicLoading', '$cordovaFileOpener2']; | |
function Files($window, $cordovaFileTransfer, $ionicLoading, $cordovaFileOpener2) { | |
return { |
var foo = function(){ | |
//Clear cookies | |
var cookies = document.cookie.split(";"); | |
for (var i = 0; i < cookies.length; i++) { | |
var cookie = cookies[i]; | |
var eqPos = cookie.indexOf("="); | |
var name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie; | |
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT"; |
angular.module('App', ['ionic', 'ngCordova', 'ngAnimate', 'ngCordovaOauth', 'firebase']) | |
.run(['$ionicPlatform', | |
'$rootScope', | |
'$firebaseAuth', | |
function($ionicPlatform, $rootScope, $firebaseAuth) { | |
$ionicPlatform.ready(function() { | |
if(window.cordova && window.cordova.plugins.Keyboard) { | |
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard |
var assignProperty = function (object, property, value) { | |
if (typeof property === "string") { | |
property = property.split("."); | |
} | |
if (property.length > 1) { | |
var e = property.shift(); | |
assignProperty(object[e] = Object.prototype.toString.call(object[e]) === "[object Object]" ? object[e] : {}, property, value); | |
} else { | |
object[property[0]] = value; | |
} |